Skip to content
Open
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
68 changes: 42 additions & 26 deletions starter_code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@

<body>
<!-- NAVBAR -->
<div id="nav-purple">
<nav>
<div>
<div id="nav-slack-logo">
<img src="./images/slack-logo.png" alt="Slack logo" />


<ul>
<li>
Expand All @@ -39,14 +41,17 @@
</div>

<div>

<div id="div-search-menu">
<button>
<img src="./images/icon-search.png" alt="Search icon">
</button>

<button>
<img src="./images/icon-menu.png" alt="Menu icon">
</button>

</div>

<ul hidden>
<li>
<a href="#">Sign in</a>
Expand All @@ -61,85 +66,96 @@

<!-- HEADER -->
<header>
<div>
<div id="header-purple">
<h1>Great teamwork starts with a digital HQ</h1>

<p>Slack is free to try for as long as you'd like.</p>
<p><strong id="yellow-text">Slack is free to try</strong> for as long as you'd like.</p>

<div>
<button>Sign up with email</button>
<div id="sign-email-google">
<button id="sign-email">Sign up with email</button>

<button>
<button id="google-logo">
<img src="./images/logo-google.png" alt="Google logo" />
<span>Sign up with Google</span>
<span id="sign-google">Sign up with Google</span>
</button>
</div>

</div>

<div>
</div>
<div id="hero-div">
<img src="./images/hero-product-ui.png" alt="Slack app screenshot" />
</div>
</header>

<main>

<div id="six-images">
<section>
<p>Trusted by companies all over the world</p>

<div>
<div class="row">
<img src="./images/logo-airbnb.png" alt="Airbnb logo" />
<img src="./images/logo-nasa.png" alt="NASA logo" />
<img src="./images/logo-uber.png" alt="Uber logo" />
<img src="./images/logo-target.png" alt="Target logo" />
<img src="./images/logo-nyt.png" alt="New York Times logo" />
<img src="./images/logo-spotify.png" alt="Spotify logo" />
</div>

<div class="row">
<img src="./images/logo-nyt.png" alt="New York Times logo" id="new-york"/>
<img src="./images/logo-spotify.png" alt="Spotify logo" id="spotify"/>
</div>

</div>

</section>

<section>
<section id="section-bellow-images">

<div class="teams-large">
<h3>Teams large and small rely on Slack</h3>
<p>Slack securely scales up to support collaboration at the world’s biggest companies.</p>

<p>Slack securely scales up to support collaboration at the world’s biggest companies.</p>
</div>

<ul>
<li>
<p><span>85%</span></p>
<p>
<p class="porcentage"><span class="purp-text">85%</span></p>
<p class="porcentage-ptext">
of users say Slack has improved communication
<sup>*</sup>
</p>
</li>

<li>
<p><span>86%</span></p>
<p>
<p class="porcentage"><span class="purp-text">86%</span></p>
<p class="porcentage-ptext">
feel their ability to work remotely has improved has improved
<sup>*</sup>
</p>
</li>

<li>
<p><span>88%</span></p>
<p>
<p class="porcentage"><span class="purp-text">88%</span></p>
<p class="porcentage-ptext">
feel more connected to their teams*
<sup>*</sup>
</p>
</li>
</ul>

</section>

<section>
<section id="welcome-digital">
<h3>Welcome to your new digital HQ</h3>

<button>Try for free</button>
<button>Talk to sales</button>
<button class="button-purple">Talk to sales</button>
</section>

</main>

<footer>
<ul>
<ul class="status-ul">
<li>Status</li>
<li>Privacy</li>
<li>Terms</li>
Expand All @@ -151,7 +167,7 @@ <h3>Welcome to your new digital HQ</h3>

<hr>

<ul>
<ul class="ul-row">
<li>
<i class="fab fa-twitter"></i>
</li>
Expand All @@ -166,7 +182,7 @@ <h3>Welcome to your new digital HQ</h3>
</li>
</ul>

<div>
<div >
<small>
&copy; 2022 Slack Technologies, LLC, a Salesforce company. All rights reserved. Various trademarks held by
their respective owners.
Expand Down
Loading