Skip to content

WD-FT-APRIL25-ES María Jiménez #2253

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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
75 changes: 43 additions & 32 deletions starter_code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge" />

<!-- link the Font Awesome stylesheet - CDN -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,500;1,500&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Special+Gothic&display=swap');
</style>
<link href="https://use.fontawesome.com/releases/v5.0.1/css/all.css" rel="stylesheet" />

<!-- link your styles -->
Expand All @@ -18,17 +21,20 @@

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

<ul>
<ul class ="references">
<li>
<a href="#">Product</a>
</li>
<li>
<a href="#">Solutions</a>
</li>
<li>
<a href="#">Enterprise</a>
</li>
<li>
<a href="#">Resources</a>
</li>
Expand All @@ -38,7 +44,7 @@
</ul>
</div>

<div>
<div class="menu">
<button>
<img src="./images/icon-search.png" alt="Search icon">
</button>
Expand All @@ -56,35 +62,37 @@
</li>
</ul>
</div>

</nav>


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

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

<button>
<button class ="google-logo">
<img src="./images/logo-google.png" alt="Google logo" />
<span>Sign up with Google</span>
<span>SIGN UP WITH GOOGLE</span>
</button>
</div>

</div>

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

<!-- MAIN -->
<main>
<section>
<p>Trusted by companies all over the world</p>
<section class="logos">
<p>TRUSTED BY COMPANIES ALL OVER THE WORLD</p>

<div>
<img src="./images/logo-airbnb.png" alt="Airbnb logo" />
Expand All @@ -94,14 +102,11 @@ <h1>Great teamwork starts with a digital HQ</h1>
<img src="./images/logo-nyt.png" alt="New York Times logo" />
<img src="./images/logo-spotify.png" alt="Spotify logo" />
</div>

</section>

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


<ul>
<li>
<p><span>85%</span></p>
Expand All @@ -122,38 +127,44 @@ <h3>Teams large and small rely on Slack</h3>
<li>
<p><span>88%</span></p>
<p>
feel more connected to their teams*
feel more connected to their teams
<sup>*</sup>
</p>
</li>
</ul>
</section>

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

<button>Try for free</button>
<button>Talk to sales</button>
<div class ="welcome-buttons">
<button class="btn-white">TRY FOR FREE</button>
<button class="btn-purple">TALK TO SALES</button>
</div>
</section>

</main>

<footer>
<ul>
<!-- FOOTER -->
<hr>
<footer class ="footer-container">
<ul class="footer-links">
<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="icon-region">
<img src="images/icon-region.png" alt="icon-region">
Change Region
</li>
<li class="icon-download">
<img class="blue" src="images/icon-download.png" alt="icon-download">
Download Slack
</li>
</ul>

<hr>

<ul>
<ul class="footer-icons">
<li>
<i class="fab fa-twitter"></i>
<i class="fab fa-twitter"></i> <!--Son iconos del enlace de fontawesome-->
</li>
<li>
<i class="fab fa-facebook"></i>
Expand All @@ -166,7 +177,7 @@ <h3>Welcome to your new digital HQ</h3>
</li>
</ul>

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