Skip to content

Leah Fenster- Peter Woods- WDFT LIS JUL2024 #2130

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
Binary file added .DS_Store
Binary file not shown.
89 changes: 45 additions & 44 deletions starter_code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

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

<ul>
<li>
Expand All @@ -38,9 +38,9 @@
</ul>
</div>

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

<button>
Expand All @@ -61,97 +61,98 @@

<!-- HEADER -->
<header>
<div>
<h1>Great teamwork starts with a digital HQ</h1>
<div class="great">
<h1>Great teamwork <br />starts with a digital <br />HQ</h1>

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

<div>
<button>Sign up with email</button>
<div class="top-buttons">
<button class="email">Sign up with email</button>

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

</div>

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

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

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

</section>

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


<ul>
<li>
<p><span>85%</span></p>
<p>
<p><span class="purple">85%</span></p>
<p class="black">
of users say Slack has improved communication
<sup>*</sup>
</p>
</li>

<li>
<p><span>86%</span></p>
<p>
<p><span class="purple">86%</span></p>
<p class="black">
feel their ability to work remotely has improved has improved
<sup>*</sup>
</p>
</li>

<li>
<p><span>88%</span></p>
<p>
feel more connected to their teams*
<p><span class="purple">88%</span></p>
<p class="black">
feel more connected to their teams
<sup>*</sup>
</p>
</li>
</ul>
<p class="weighted"><span class="star">*</span> 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>
</section>

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

<button>Try for free</button>
<button>Talk to sales</button>
<button class="try">Try for free</button>
<button class="talk">Talk to sales</button>
</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 class="status">
<li><hr /></li>
<li class="row">Status</li>
<li class="row">Privacy</li>
<li class="row">Terms</li>
<li class="row">Cookie Preferences</li>
<li class="row">Contact Us</li>
<li class="row"><img src="./images/icon-region.png" alt="change region" /> Change Region</li>
<li class="blue row"><img src="./images/icon-download.png" alt="download slack" /> Download Slack</li>
</ul>

<hr>

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

<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