Skip to content
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

done #2185

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

done #2185

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

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

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

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

<!-- HEADER -->
<header>
<div>
<h1>Great teamwork starts with a digital HQ</h1>
<div class="container-hero">
<h1>Great teamwork <br> starts with a digital <br> HQ</h1>

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

<div>
<button>Sign up with email</button>
<div class="signup-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="hero-product">
<img src="./images/hero-product-ui.png" alt="Slack app screenshot" />
</div>
</header>

<main>
<section>
<section class="companies">
<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,12 +97,10 @@ <h1>Great teamwork starts with a digital HQ</h1>

</section>

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


<ul>
<ul class="info">
<li>
<p><span>85%</span></p>
<p>
Expand All @@ -129,11 +127,11 @@ <h3>Teams large and small rely on Slack</h3>
</ul>
</section>

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

<button>Try for free</button>
<button>Talk to sales</button>
<button id="button-try">Try for free</button>
<button id="button-talk">Talk to sales</button>
</section>

</main>
Expand All @@ -145,13 +143,13 @@ <h3>Welcome to your new digital HQ</h3>
<li>Terms</li>
<li>Cookie Preferences</li>
<li>Contact Us</li>
<li>Change Region</li>
<li>Download Slack</li>
<li> <img src="images/icon-region.png" alt="Region"> Change Region</li>
<li id="blue"><img src="images/icon-download.png" alt="download"> Download Slack </li>
</ul>

<hr>

<ul>
<ul class="social-icons">
<li>
<i class="fab fa-twitter"></i>
</li>
Expand All @@ -166,7 +164,7 @@ <h3>Welcome to your new digital HQ</h3>
</li>
</ul>

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