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
38 changes: 19 additions & 19 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 class="navbar">
<div>
<img src="./images/slack-logo.png" alt="Slack logo" />
<img src="./images/slack-logo.png" alt="Slack logo" class="slack-logo"/>

<ul>
<ul class="navbar-list">
<li>
<a href="#">Product</a>
</li>
Expand All @@ -38,7 +38,7 @@
</ul>
</div>

<div>
<div class="right-icons">
<button>
<img src="./images/icon-search.png" alt="Search icon">
</button>
Expand All @@ -61,32 +61,32 @@

<!-- HEADER -->
<header>
<div>
<div class="signup-container">
<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 class="mustard-color">Slack is free to try</span> for as long as you'd like.</p>

<div>
<button>Sign up with email</button>
<div class="sigup-buttons">
<button class="email-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>

</div>

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

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

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

</section>

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

Expand Down Expand Up @@ -129,29 +129,29 @@ <h3>Teams large and small rely on Slack</h3>
</ul>
</section>

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

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

</main>

<footer>
<ul>
<ul class="terms-container">
<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 class="download">Download Slack</li>
</ul>

<hr>

<ul>
<ul class="social-media">
<li>
<i class="fab fa-twitter"></i>
</li>
Expand Down
Loading