Skip to content
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
}
59 changes: 29 additions & 30 deletions starter_code/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
<link href="https://use.fontawesome.com/releases/v5.0.1/css/all.css" rel="stylesheet" />

<!-- link your styles -->

<link rel="stylesheet" href="./stylesheets/style.css" />

<link rel="icon" type="image/x-icon" href="./images/slack-icon.png">
<title>Slack is your digital HQ | Slack</title>
</head>

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

<div>
<img src="./images/slack-logo.png" alt="Slack logo" class = "logoSlack"/>
<ul>
<li>
<a href="#">Product</a>
Expand All @@ -38,7 +38,7 @@
</ul>
</div>

<div>
<div class="buttonNav">
<button>
<img src="./images/icon-search.png" alt="Search icon">
</button>
Expand All @@ -47,7 +47,7 @@
<img src="./images/icon-menu.png" alt="Menu icon">
</button>

<ul hidden>
<ul>
<li>
<a href="#">Sign in</a>
</li>
Expand All @@ -61,32 +61,31 @@

<!-- HEADER -->
<header>
<div>
<div class = "firstPart">
<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>
<button>Sign up with email</button>
<div class ="signUp">
<button class = "SignupEmail">Sign up with email</button>

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

</div>

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

<main>
<section>
<p>Trusted by companies all over the world</p>
<section id = "logo">
<p id="trustedcompany">Trusted by companies all over the world</p>

<div>
<div id="logocompany">
<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,61 +96,61 @@ <h1>Great teamwork starts with a digital HQ</h1>

</section>

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


<ul>
<li>
<p><span>85%</span></p>
<p>
<p class="subtextCifras">
of users say Slack has improved communication
<sup>*</sup>
</p>
</li>

<li>
<p><span>86%</span></p>
<p>
<p class="subtextCifras">
feel their ability to work remotely has improved has improved
<sup>*</sup>
</p>
</li>

<li>
<p><span>88%</span></p>
<p>
<p class="subtextCifras">
feel more connected to their teams*
<sup>*</sup>
</p>
</li>
</ul>
</section>

<section>
<section id="hq">
<h3>Welcome to your new digital HQ</h3>

<button>Try for free</button>
<button>Talk to sales</button>
<button id="freebutton">Try for free</button>
<button id="salesbutton">Talk to sales</button>
</section>

</main>

<footer>
<ul>
<ul id="footerlinks">
<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 id="download">Download Slack</li>
</ul>

<hr>

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

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