Skip to content
Open

done #95

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
168 changes: 150 additions & 18 deletions starter_code/index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,152 @@
<!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 the font awesome CDN -->
<link href="https://use.fontawesome.com/releases/v5.0.1/css/all.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">

<!-- link your styles -->
<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="Logotipo">
<nav>
<ul class="navegador">
<li><a href="#"> Why Slak</a></li>
<li><a href="#"> Pricing</a></li>
<li><a href="#"> About us</a></li>
<li class="boton1">Your work space</li>
</ul>
</nav>
</header>

<section>

<div class="container">

<div class="row">

<div class="col-lg-6 order-lg-2">
<article>
<h1>Where work happens</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard
dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a
type specimen
book.</p>
</article>

<ul>
<li class="boton2">Email adress</li>
<li class="boton3">Get started</li>
</ul>


<p>Already using<a href="#"> Slack</a></p>
</div>

<div class="col-lg-6 order-lg-1">
<img src="./images/home_talking.png" alt="fhfhf">
</div>

</div>

</div>

</section>


<section class="features">

<art class="patrocinadores">
<div class="container">
<div class="row">
<h2>Your are in good company</h2>
<p>Milions os people around the world have alredy made Slak their place to work</p>

<ul>
<li class="boton4">Discover why</li>
</ul>

</div>

</div>
</art>

<article>

<div class="container">

<div class="row">

<div class="col-12 d-md-none d-lg-block col-lg-4">
<img src="./images/capital-one-logo.png" alt="logo">
</div>

<div class="col-12 d-md-none d-lg-block col-lg-4">
<img src="./images/airbnb-logo.png" alt="logo">
</div>

<div class="col-12 col-md-6 col-lg-4">
<img src="./images/harvard-logo.png" alt="logo">
</div>

<div class="col-12 col-md-6 col-lg-4">
<img src="./images/oracle-logo.png" alt="logo">
</div>

<div class="col-12 col-md-6 col-lg-4">
<img src="./images/los-angeles-times-logo.png" alt="logo">
</div>

<div class="col-12 col-md-6 col-lg-4">
<img src="./images/oracle-logo.png" alt="logo">
</div>

</div>

</div>

</article>

</div>

</section>


<section>

<div class="container">

<div class="row">

<h2>Try it for free</h2>
<p>Already using slak?<a href="#">Sign in</a></p>

<ul>
<li class="boton2">Email adress</li>
<li class="boton3">Get started</li>
</ul>

</div>

</div>

</section>





</body>

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

img {
width: 100%;
}

.menu {
display: flex;
justify-content: space-between;
align-items: center;
}

.menu img {
width: 100px;
}

.menu ul {
display: flex;
list-style: none;
}

.features {
background-color: #F4F3F4;
}

.features img {
width: 200px;
display: flex;
align-items: center;
}

.boton2 {
border: 1px solid;
font-weight: 80;
text text-decoration: none;
margin: 20px;
padding: 5px;
display: block;
text-align: center;
}

.boton3 {
border: 1px solid;
font-weight: 80;
background-color: blue;
margin: 20px;
padding: 5px;
display: block;
text-align: center;
text-transform: uppercase;
color: white;
}

.boton1 {
border: 1px solid;
font-weight: 80;
text text-decoration: none;
margin: 20px;
padding: 5px;
display: block;
text-align: center;
}

.navegador {
display: flex;
justify-content: space-between;
padding-top: 20px;
align-items: center;
}

.boton4 {
border: 1px solid;
font-weight: 80;
background-color: white;
margin: 20px;
padding: 5px;
display: block;
text-align: center;
color: blue;
}

.emial {
text-align: center;
}

.patrocinadores {
text-align: center;
padding-top: 30px;
}