Skip to content
Open

lab css #2309

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

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

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

<div>
<div class="btn">
<button>
<img src="./images/icon-search.png" alt="Search icon">
</button>
Expand Down Expand Up @@ -66,27 +66,27 @@ <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>
<div class="header-signup">
<button class="header-first-btn">Sign up with email</button>

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

</div>

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

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

<div>
<div class="main-section1-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="main-section2">
<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,17 +129,17 @@ <h3>Teams large and small rely on Slack</h3>
</ul>
</section>

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

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

</main>

<footer>
<ul>
<ul class="footer-first-ul">
<li>Status</li>
<li>Privacy</li>
<li>Terms</li>
Expand All @@ -151,7 +151,7 @@ <h3>Welcome to your new digital HQ</h3>

<hr>

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

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