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
111 changes: 60 additions & 51 deletions starter_code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,34 @@

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

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

<div class="menu">
<ul>
<li>
<a href="#">Product</a>
</li>
<li>
<a href="#">Solutions</a>
</li>
<li>
<a href="#">Resources</a>
</li>
<li>
<a href="#">Pricing</a>
</li>
</ul>
</div>
</div>

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

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

Expand All @@ -62,31 +64,32 @@
<!-- HEADER -->
<header>
<div>
<h1>Great teamwork starts with a digital HQ</h1>
<h1 class="header-title">Great teamwork starts with a digital HQ</h1>

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

<div>
<button>Sign up with email</button>
<div class="login">
<button class="sign-up-email">Sign up with email</button>

<button>
<button class="sign-up-google">
<img src="./images/logo-google.png" alt="Google logo" />
<span>Sign up with Google</span>
<span></span>
</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" id="big-image"/>
</div>
</header>

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

<div>
<div class="logos">
<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" />
Expand All @@ -97,30 +100,30 @@ <h1>Great teamwork starts with a digital HQ</h1>

</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>


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

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

<li>
<p><span>88%</span></p>
<p><span class="purple-text">88%</span></p>
<p>
feel more connected to their teams*
<sup>*</sup>
Expand All @@ -129,17 +132,21 @@ <h3>Teams large and small rely on Slack</h3>
</ul>
</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="btn-try-for-free">Try for free</button>
<button class="btn-talk-to-sales">Talk to sales</button>
</section>

</main>


<footer>
<ul>

<span class="line-break"></span>

<ul class="company-faq">
<li>Status</li>
<li>Privacy</li>
<li>Terms</li>
Expand All @@ -151,22 +158,24 @@ <h3>Welcome to your new digital HQ</h3>

<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>

<div>
<ul class="social-media">
<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>
</div>

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