Skip to content

Flexbox Slack WDFTJUL2024 Matheus & David #2128

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

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

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

<div>
<div class="navButtons">
<button>
<img src="./images/icon-search.png" alt="Search icon">
</button>
Expand All @@ -60,44 +60,44 @@


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

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

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

</div>

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

<main>
<section>
<main class="container">
<section id="logoSection">
<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" />
<div class="logos">
<img id="image1" src="./images/logo-airbnb.png" alt="Airbnb logo" />
<img id="image2" src="./images/logo-nasa.png" alt="NASA logo" />
<img id="image3" src="./images/logo-uber.png" alt="Uber logo" />
<img id="image4" src="./images/logo-target.png" alt="Target logo" />
<img id="image5" src="./images/logo-nyt.png" alt="New York Times logo" />
<img id="image6" src="./images/logo-spotify.png" alt="Spotify logo" />
</div>

</section>

<section>
<section id="mainBod">
<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 id="welcomeSection">
<h3>Welcome to your new digital HQ</h3>

<button>Try for free</button>
<button>Talk to sales</button>
<button id="tryForFree">Try for free</button>
<button id="talkToSales">Talk to sales</button>
</section>

</main>

<footer>
<ul>
<footer class="footer">
<ul id="footerList">
<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 id="logoList">
<li>
<i class="fab fa-twitter"></i>
</li>
Expand All @@ -166,7 +166,7 @@ <h3>Welcome to your new digital HQ</h3>
</li>
</ul>

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