-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathindex.html
195 lines (153 loc) · 5.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- link the Font Awesome stylesheet - CDN -->
<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>
<!-- NAVBAR -->
<nav class="navbar">
<div>
<img class="navbar-slack-logo" src="./images/slack-logo.png" alt="Slack logo" />
<ul class="navbar-list">
<li class="navbar-item">
<a href="#">Product</a>
</li>
<li class="navbar-item">
<a href="#">Solutions</a>
</li>
<li class="navbar-item">
<a href="#">Resources</a>
</li>
<li class="navbar-item">
<a href="#">Pricing</a>
</li>
</ul>
</div>
<div class="navbar-right-side">
<button class="navbar-buttons">
<img src="./images/icon-search.png" alt="Search icon">
</button>
<button class="navbar-buttons">
<img src="./images/icon-menu.png" alt="Menu icon">
</button>
<ul hidden>
<li>
<a href="#">Sign in</a>
</li>
<li>
<a href="#">Try for free</a>
</li>
</ul>
</div>
</nav>
<!-- HEADER -->
<header>
<!-- first section -->
<div class="first-section">
<h1 class="first-section-title">Great teamwork starts with a digital HQ</h1>
<p class="first-section-subtitle"><span class="first-section-subtitle-yellow">Slack is free to try</span> for as long as you'd like.</p>
<div class="first-section-buttons">
<button class="first-section-email-button">Sign up with email</button>
<button class="first-section-google-button">
<img src="./images/logo-google.png" alt="Google logo" />
<span>Sign up with Google</span>
</button>
</div>
</div>
<!-- hero section / screenshot central -->
<div>
<img class="hero-image" src="./images/hero-product-ui.png" alt="Slack app screenshot" />
</div>
</header>
<!-- TRUSTED BY COMPANIES & LOGOS -->
<main>
<section class="trusted-by">
<p class="trusted-by-text">Trusted by companies all over the world</p>
<div class="trusted-by-images">
<img src="./images/logo-airbnb.png" alt="Airbnb logo" class="logo-airbnb"/>
<img src="./images/logo-nasa.png" alt="NASA logo" class="logo-nasa"/>
<img src="./images/logo-uber.png" alt="Uber logo" class="logo-uber"/>
<img src="./images/logo-target.png" alt="Target logo" class="logo-target"/>
<img src="./images/logo-nyt.png" alt="New York Times logo" class="logo-nyt"/>
<img src="./images/logo-spotify.png" alt="Spotify logo" class="logo-spotify"/>
</div>
</section>
<!-- INFORMATION SECTION -->
<section class="information-container">
<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 class="information-list">
<li class="information-item">
<p><span>85%</span></p>
<p class="information-description">
of users say Slack has improved communication
<sup>*</sup>
</p>
</li>
<li class="information-item">
<p><span>86%</span></p>
<p class="information-description">
feel their ability to work remotely has improved has improved
<sup>*</sup>
</p>
</li>
<li class="information-item">
<p><span>88%</span></p>
<p class="information-description">
feel more connected to their teams
<sup>*</sup>
</p>
</li>
</ul>
<small><sup>*</sup>Weighted average. Based on 2.707 survey responses from weekly Slack users in the U.S., UK, Australia and Canada with a 2% margin of error at 95% CI (August 2020).</small>
</section>
<!-- WELCOME & TRY/TALK BUTTONS -->
<section class="welcome-section">
<h3 class="welcome-section-text">Welcome to your new digital HQ</h3>
<button class="welcome-try-button">Try for free</button>
<button class="welcome-talk-button">Talk to sales</button>
</section>
</main>
<!-- FOOTER -->
<footer>
<hr>
<ul class="footer-list">
<li class="footer-list-item">Status</li>
<li class="footer-list-item">Privacy</li>
<li class="footer-list-item">Terms</li>
<li class="footer-list-item">Cookie Preferences</li>
<li class="footer-list-item">Contact Us</li>
<li class="footer-list-item"><img src="./images/icon-region.png" alt="Region icon">Change Region</li>
<li class="footer-list-item-blue"><img src="./images/icon-download.png" alt="Download icon">Download Slack</li>
</ul>
<ul class="footer-socials">
<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="footer-end">
<small>
© 2022 Slack Technologies, LLC, a Salesforce company. All rights reserved. Various trademarks held by
their respective owners.
</small>
</div>
</footer>
</body>
</html>