Skip to content

Completed Lab #2242

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
72 changes: 40 additions & 32 deletions starter_code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

<!-- link the Font Awesome stylesheet - 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" />

<link rel="icon" type="image/x-icon" href="./images/slack-icon.png">
Expand All @@ -19,9 +17,11 @@
<body>
<!-- NAVBAR -->
<nav>
<div>
<div class="nav-logo">
<img src="./images/slack-logo.png" alt="Slack logo" />
</div>

<div class="nav-links">
<ul>
<li>
<a href="#">Product</a>
Expand All @@ -38,21 +38,19 @@
</ul>
</div>

<div>
<div class="nav-buttons">
<button>
<img src="./images/icon-search.png" alt="Search icon">
</button>

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

</button>
<button>
<img src="./images/icon-menu.png" class="menu-icon" alt="Menu icon">
</button>
<ul hidden>
<li>
<a href="#">Sign in</a>
</li>
<li>
<a href="#">Try for free</a>
<a href="#" class="btn-trial">Try for free</a>
</li>
</ul>
</div>
Expand All @@ -61,47 +59,50 @@

<!-- HEADER -->
<header>
<div>
<div class="header-content">
<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</span> to try for as long as you'd like.</p>

<div>
<button>Sign up with email</button>
<sectio class="header-buttons">
<button class="sign-up-button">Sign up with email</button>

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

</div>

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

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

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

</section>

<section>
<!--INFO SECTION-->

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


<ul>
<li>
<p><span>85%</span></p>
Expand All @@ -122,35 +123,41 @@ <h3>Teams large and small rely on Slack</h3>
<li>
<p><span>88%</span></p>
<p>
feel more connected to their teams*
feel more connected to their teams
<sup>*</sup>
</p>
</li>
</ul>

<div class="survey-container">
<p> *Weighted average. Based on 2.707 survey responses from weekly Slack users in the U.S., UK, Australia and Canada with a +- 2% margin of error at 95% CI (August 2020).</p>
</div>
</section>

<section>
<section class="digital-era">
<h3>Welcome to your new digital HQ</h3>

<button>Try for free</button>
<button>Talk to sales</button>
<button id="buttontwo">Talk to sales</button>
</section>

</main>

<footer>
<section class="footer-container">
<hr>
<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>
<li> <img src="./images/icon-region.png" alt="Region" /> Change Region</li>
<li> <img src="./images/icon-download.png" alt="Cloud" /> <span>Download Slack</span></li>
</ul>
</section>

<hr>

<section class="icon-container">
<ul>
<li>
<i class="fab fa-twitter"></i>
Expand All @@ -165,8 +172,9 @@ <h3>Welcome to your new digital HQ</h3>
<i class="fab fa-linkedin"></i>
</li>
</ul>
</section>

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