Skip to content

new commit #2243

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
102 changes: 37 additions & 65 deletions starter_code/index.html
Original file line number Diff line number Diff line change
@@ -1,143 +1,120 @@
<!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 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">
<title>Slack is your digital HQ | Slack</title>
</head>

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

<!-- <div> -->
<img src="./images/slack-logo.png" alt="Slack logo" class="logo"/>
<ul>
<li>
<a href="#">Product</a>
</li>
<li>
<a href="#">Solutions</a>
</li>
<li>
<a href="#">Enterprise</a>
</li>
<li>
<a href="#">Resources</a>
</li>
<li>
<a href="#">Pricing</a>
</li>
</ul>
</div>

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

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

<ul hidden>
<li>
<a href="#">Sign in</a>
<a href="#" class="sign_background">Sign in</a>
</li>
<li>
<a href="#">Try for free</a>
<a href="#" class="try_background">Try for free</a>
</li>
</ul>
</div>
<!-- </div> -->
</nav>


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

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

<div>
<button>Sign up with email</button>

<button>
<img src="./images/logo-google.png" alt="Google logo" />
<span>Sign up with Google</span>
<div class="teamwork">
<h1>Great <br> teamwork starts with <br> a digital HQ</h1>
<p class="slack_paragraph"><span class="yellow">Slack is free to try</span> for as long as you'd like.</p>
<div class="signup_buttons">
<button class="sign_email">Sign up with email</button>
<button class="sign_google">
<img src="./images/logo-google.png" alt="Google logo" class="google_logo" />
<span class="google_span">Sign up with Google</span>
<div></div>
</button>
</div>

</div>

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

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

<div>
<div class="company_images">
<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>

</section>

<section>
<section class="team">
<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="team_paragraph">Slack securely scales up to support collaboration at the world’s biggest companies.</p>
<ul>
<li>
<p><span>85%</span></p>
<p>
of users say Slack has improved communication
of users say Slack has <br> improved <br> communication
<sup>*</sup>
</p>
</li>

<li>
<p><span>86%</span></p>
<p>
feel their ability to work remotely has improved has improved
feel their ability to work <br> remotely has improved has improved
<sup>*</sup>
</p>
</li>

<li>
<p><span>88%</span></p>
<p>
feel more connected to their teams*
feel more connected to <br> their teams*
<sup>*</sup>
</p>
</li>
</ul>
</section>

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

<button>Try for free</button>
<button>Talk to sales</button>
<button class="try_btn">Try for free</button>
<button class="talk_btn">Talk to sales</button>
</section>

</main>

<hr>
<footer>
<ul>
<li>Status</li>
Expand All @@ -146,12 +123,10 @@ <h3>Welcome to your new digital HQ</h3>
<li>Cookie Preferences</li>
<li>Contact Us</li>
<li>Change Region</li>
<li>Download Slack</li>
<li><a href = "#">Download Slack</a> </li>
</ul>

<hr>

<ul>
<!-- <hr> -->
<ul class="icons">
<li>
<i class="fab fa-twitter"></i>
</li>
Expand All @@ -165,15 +140,12 @@ <h3>Welcome to your new digital HQ</h3>
<i class="fab fa-linkedin"></i>
</li>
</ul>

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

</footer>
</body>

</html>
Loading