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
129 changes: 75 additions & 54 deletions starter_code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@

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

<ul>
<ul id="nav-bar">
<li>
<a href="#">Product</a>
</li>
Expand All @@ -38,12 +38,12 @@
</ul>
</div>

<div>
<button>
<div id="nav-bar-right">
<button class="top-btn">
<img src="./images/icon-search.png" alt="Search icon">
</button>

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

Expand All @@ -52,7 +52,7 @@
<a href="#">Sign in</a>
</li>
<li>
<a href="#">Try for free</a>
<a href="#" class="sign-top-btn">Try for free</a>
</li>
</ul>
</div>
Expand All @@ -61,45 +61,47 @@

<!-- HEADER -->
<header>
<div>
<div id="presentation">

<h1>Great teamwork starts with a digital HQ</h1>

<p>Slack is free to try for as long as you'd like.</p>
<p><span>Slack is free to try</span> for as long as you'd like.</p>

<div>
<button>Sign up with email</button>
<div id="sign-up-btn">
<button class="white-btn">Sign up with email</button>

<button>
<img src="./images/logo-google.png" alt="Google logo" />
<button class= "google-btn">
<img src="./images/logo-google.png" alt="Google-logo" />
<span>Sign up with Google</span>
<span class="blank-space"></span>
</button>
</div>

</div>

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

<main>
<section>
<p>Trusted by companies all over the world</p>
<section id="logo-section">
<p class="par-companies">Trusted by companies all over the world</p>

<div>
<div id="logos-img">
<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" />
<img class="nyt-logo" src="./images/logo-nyt.png" alt="New York Times logo" />
<img class="spotify-logo" src="./images/logo-spotify.png" alt="Spotify logo" />
</div>

</section>

<section>
<section id="slack-data">
<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 class="subtitle">Slack securely scales up to support collaboration at the world’s biggest companies.</p>


<ul>
Expand All @@ -114,7 +116,7 @@ <h3>Teams large and small rely on Slack</h3>
<li>
<p><span>86%</span></p>
<p>
feel their ability to work remotely has improved has improved
feel their ability to work remotely has improved
<sup>*</sup>
</p>
</li>
Expand All @@ -127,47 +129,66 @@ <h3>Teams large and small rely on Slack</h3>
</p>
</li>
</ul>

<p id="quote"> <span>*</span> Weighted average. Based on 2,707 survey responses from weekly Slack users in the U.S., UK, Australia and Canada with a $\pm 2\%$ margin of error at $95\%$ CI (August 2020).</p>
</section>

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

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

</main>

<footer>
<ul>
<li>Status</li>
<li>Privacy</li>
<li>Terms</li>
<li>Cookie Preferences</li>
<li>Contact Us</li>
<li>Change Region</li>
<li>Download Slack</li>
</ul>

<hr>

<ul>
<li>
<i class="fab fa-twitter"></i>
</li>
<li>
<i class="fab fa-facebook"></i>
</li>
<li>
<i class="fab fa-youtube"></i>
</li>
<li>
<i class="fab fa-linkedin"></i>
</li>
</ul>
<footer id="footer">
<br>
<hr class="line">

<section id="footer-menu">

<ul >
<li>Status</li>
<li>Privacy</li>
<li>Terms</li>
<li>Cookie Preferences</li>
<li>Contact Us</li>
<li>
<img src="./images/icon-region.png" alt="icon-region">
Change Region
</li>
<li class="download-btn">
<img src="./images/icon-download.png" alt="">
Download Slack
</li>
</ul>

</section>


<section id="social-media">

<ul >
<li>
<i class="fab fa-twitter"></i>
</li>
<li>
<i class="fab fa-facebook"></i>
</li>
<li>
<i class="fab fa-youtube"></i>
</li>
<li>
<i class="fab fa-linkedin"></i>
</li>
</ul>

</section>

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