Skip to content

FT-APRIL25-ES Álvaro Ruiz Monfillo #2252

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 3 commits 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
82 changes: 43 additions & 39 deletions starter_code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<!-- NAVBAR -->
<nav>
<div>
<img src="./images/slack-logo.png" alt="Slack logo" />
<img src="./images/slack-logo.png" alt="Slack logo" class="imgSlack"/>

<ul>
<ul hidden>
<li>
<a href="#">Product</a>
</li>
Expand All @@ -38,14 +38,10 @@
</ul>
</div>

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

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

<ul hidden>
<li>
Expand All @@ -61,32 +57,31 @@

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

<div>
<button>Sign up with email</button>
<div class="buttons">
<button class="emailSingup">Sign up with email</button>

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

</div>

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

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

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

</section>

<section>
<section class="teams">
<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 All @@ -123,13 +118,18 @@ <h3>Teams large and small rely on Slack</h3>
<p><span>88%</span></p>
<p>
feel more connected to their teams*
<sup>*</sup>
</p>
</li>
</ul>
</section>

<section>
<section class="info">
<p>*Lorem ipsum dolor sit, amet consectetur adipisicing elit. Odio placeat, corporis praesentium accusamus, quas
animi omnis necessitatibus itaque sapiente, eligendi aperiam natus? Ad sapiente reiciendis explicabo ipsum!
Sunt, corporis minus.</p>
</section>

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

<button>Try for free</button>
Expand All @@ -139,34 +139,38 @@ <h3>Welcome to your new digital HQ</h3>
</main>

<footer>

<hr>
<ul>
<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><img src="images/icon-region.png" alt="Change Region">Change Region</li>
<li><img src="images/icon-download.png" alt="Download Slack">Download Slack</li>
</ul>

<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 class="socialMedia">
<div>
<i class="fab fa-twitter"></i>
</div>
<div>
<i class="fab fa-facebook"></i>
</div>
<div>
<i class="fab fa-youtube"></i>
</div>
<div>
<i class="fab fa-linkedin"></i>
</div>
</div>



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