Skip to content
Open

done #110

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added starter_code/images/facebook (1).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added starter_code/images/facebook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added starter_code/images/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added starter_code/images/twiter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added starter_code/images/youtube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 60 additions & 18 deletions starter_code/index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />

<!-- link the font awesome CDN -->
<link href="https://use.fontawesome.com/releases/v5.0.1/css/all.css" rel="stylesheet"/>

<!-- link your styles -->
<link rel="stylesheet" href="./stylesheets/style.css" />
<title>Where work happens | Slack</title>
</head>

<body>


</body>
</html>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./stylesheets/style.css" />
<title>Where work happens | Slack</title>
</head>

<body>

<header class="menu">
<img src="./images/slack-logo.png" alt="logo-slack" class="logo">
<img src="./images/menu.png" alt="" class="navicon">
<nav>
<ul>
<li>Why Slack</li>
<li>Pricing</li>
<li>About Us</li>
</ul>
</nav>
</header>
<section class="top">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h1>Where Work Happens</h1>
<p>When your tem needs to kick off a project, hire a new employee, deploy some code, review a sales contract,
finalize next years budget, measure an A/B tes, plan your next office opening, and more, slack has you
covered
</p>
<form>
<input type="text" id="text_id" value="Email address" class="input-top">
</form>
<button class="butt-email" type="submit">Get Starter</button>
<p>Already using Slack?><a href="#">Sign in.</a></p>
</div>
<div class="col-lg-6">
<img src="images/home_talking.png" alt="" class="img-top">
</div>
</div>
</div>
</section>
<section class="mid">
<div class="container">
<div class="row">
<div class="col-lg-6">
</div>
</div>
</div>


</section>



</body>

</html>
45 changes: 45 additions & 0 deletions starter_code/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,48 @@ main-titles dark-grey: #2C303F;
paragraph grey: #5b5e6d;
nav grey: #5b5e6d;
*/
img {
width: 100%;
}

body {
margin: 0;
padding: 0;
}

.menu {
border-bottom: 1px #ccc;
justify-content: space-between;
display: flex;
padding: 10px;
align-items: center;
position: fixed;
width: 100%;
}

.butt-email {
background-color: #1264a3;
border: none;
padding: 10px 25px;
color: #fff;
border-radius: 5px
}

.menu .logo {
width: 130px
}

.menu .navicon {
width: 50px;
}

.menu ul {
display: flex;
margin: 0;
list-style: none;
justify-content: space-between;
}

.menu nav li {
margin-right: 6px;
}