-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
317 lines (281 loc) · 10.5 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="../assets/logo.png" />
<title>UsabilityHub</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="mediaQuery.css" />
</head>
<body>
<!-- top-banner----------------------------------------------- -->
<div class="top-banner">
<div class="container">
<div class="small-bold-text banner-text">
🤗New to Usability Hub: Open and Closed cards sorting
</div>
</div>
</div>
<!-- nav------------------------------------------------------ -->
<nav>
<div class="container main-nav flex">
<a href="#" class="company-logo">
<img src="./assets/logo.png" alt="company logo" />
UsabilityHub
</a>
<div class="nav-links" id="nav-links-active">
<ul class="flex">
<li><a href="#" class="hover-links">Products</a></li>
<li><a href="#" class="hover-links">Customer</a></li>
<li><a href="#" class="hover-links">Pricing</a></li>
<li><a href="#" class="hover-links">Resources</a></li>
<li>
<a href="#" class="hover-links secondary-button">Sign in</a>
</li>
<li><a href="#" class="hover-links primary-button">Sign up</a></li>
</ul>
</div>
<a href="#" class="nav-toggle hover-links" id="nav-toggle">
<img src="./assets/hamburger.png" alt="hamburger" />
</a>
</div>
</nav>
<!-- header----------------------------------------------------- -->
<header class="container header-section flex">
<div class="header-left">
<h1>Design Confidently</h1>
<p>
UsabilityHub is a remote user research platform that takes the
guesswork out of design decisions by validating them with real users.
</p>
<a href="#" class="primary-button get-started-btn">Get Started</a>
</div>
<div class="header-right">
<img src="./assets/hero.svg" alt="hero-image" />
</div>
</header>
<!-- companies-section-------------------------------------------- -->
<section class="companies-section">
<div class="container">
<div class="small-bold-text companies-header">
The World's best companies rely on UsabilityHub to make better design
decisions.
</div>
<div class="logos flex">
<img src="./assets/asset-1.png" alt="logo" class="logo" />
<img src="./assets/asset-2.png" alt="logo" class="logo" />
<img src="./assets/asset-3.png" alt="logo" class="logo" />
<img src="./assets/asset-4.png" alt="logo" class="logo" />
<img src="./assets/asset-5.png" alt="logo" class="logo" />
<img src="./assets/asset-6.png" alt="logo" class="logo" />
<img src="./assets/asset-7.png" alt="logo" class="logo" />
<img src="./assets/asset-8.png" alt="logo" class="logo" />
</div>
</div>
</section>
<!-- feature-section------------------------------------------------ -->
<section class="feature-section">
<div class="container">
<div class="feature-header">
<h2 class="feature-header-text">
Your user research Swiss Army knife
</h2>
<a href="#" class="secondary-button">See all features</a>
</div>
<div class="feature-area flex">
<!-- card-1 -->
<div class="feature-card flex">
<img src="" alt="" />
<h3>Card Sorting</h3>
<p>Discover how people group and label information.</p>
<a href="#" class="secondary-button">
Learn More
<img src="./assets/right-arrow.png" alt="right-arrow" />
</a>
</div>
<!-- card-2 -->
<div class="feature-card flex">
<img src="" alt="" />
<h3>Card Sorting</h3>
<p>Discover how people group and label information.</p>
<a href="#" class="secondary-button">
Learn More
<img src="./assets/right-arrow.png" alt="right-arrow" />
</a>
</div>
<!-- card-3 -->
<div class="feature-card flex">
<img src="" alt="" />
<h3>Card Sorting</h3>
<p>Discover how people group and label information.</p>
<a href="#" class="secondary-button">
Learn More
<img src="./assets/right-arrow.png" alt="right-arrow" />
</a>
</div>
<!-- card-4 -->
<div class="feature-card flex">
<img src="" alt="" />
<h3>Card Sorting</h3>
<p>Discover how people group and label information.</p>
<a href="#" class="secondary-button">
Learn More
<img src="./assets/right-arrow.png" alt="right-arrow" />
</a>
</div>
<!-- card-5 -->
<div class="feature-card flex">
<img src="" alt="" />
<h3>Card Sorting</h3>
<p>Discover how people group and label information.</p>
<a href="#" class="secondary-button">
Learn More
<img src="./assets/right-arrow.png" alt="right-arrow" />
</a>
</div>
<!-- card-6 -->
<div class="feature-card flex">
<img src="" alt="" />
<h3>Card Sorting</h3>
<p>Discover how people group and label information.</p>
<a href="#" class="secondary-button">
Learn More
<img src="./assets/right-arrow.png" alt="right-arrow" />
</a>
</div>
</div>
<div class="circle"></div>
</div>
</section>
<!-- big-feature-section-------------------------------------------- -->
<section class="big-feature-section">
<div class="container flex big-feature-container">
<div class="feature-img">
<img class="feature-img" src="./assets/asset-9.svg" alt="asset" />
</div>
<div class="feature-desc flex">
<h3>Effortless validation for</h4>
<h2>Market Standards
</h3>
<p>
Test interfaces, interaction flows, iconography and more, to help
you create intuitive and delighful experiences for your users.
</p>
</div>
</div>
</section>
<section class="big-feature-section">
<div class="container flex big-feature-container" id="big-container">
<div class="feature-img">
<img class="feature-img" src="./assets/asset-10.svg" alt="asset" />
</div>
<div class="feature-desc flex">
<h3>Effortless validation for</h4>
<h2>Design professionals
</h3>
<p>
Test interfaces, interaction flows, iconography and more, to help
you create intuitive and delighful experiences for your users.
</p>
</div>
</div>
</section>
<section class="big-feature-section">
<div class="container flex big-feature-container">
<div class="feature-img">
<img class="feature-img" src="./assets/asset-11.png" alt="asset" />
</div>
<div class="feature-desc flex">
<h3>Effortless validation for</h4>
<h2>Team Work
</h3>
<p>
Test interfaces, interaction flows, iconography and more, to help
you create intuitive and delighful experiences for your users.
</p>
</div>
</div>
</section>
<!-- example section--------------------------------------------------- -->
<section class="example-section container">
<div class="examples-header flex">
<h2 class="exaples-header-text">One platform, endless possibilities</h2>
<a href="#" class="secondary-button">See more examples</a>
</div>
<div class="example-area flex">
<a href="#" class="examples-card">
<h4 class="card-text">
Can user complete a task in my software interface?
</h4>
</a>
<a href="#" class="examples-card">
<h4 class="card-text">
Can users find important pages on my website?
</h4>
</a>
<a href="#" class="examples-card">
<h4 class="card-text">Is my website's intended audience clear?</h4>
</a>
<a href="#" class="examples-card">
<h4 class="card-text">
Do visitors understand what a page is about?
</h4>
</a>
</div>
</section>
<!-- cta-section----------------------------------------------------- -->
<section class="cta-section">
<div class="container">
<div class="flex cta-section-container">
<h2>Start testing today</h2>
<p>Take the guesswork out of design decisions</p>
<a href="#" class="primary-button">Get Started</a>
</div>
</div>
</section>
<!-- footer----------------------------------------------------------- -->
<footer>
<div class="container flex footer-container">
<a href="#" class="company-logo">
<img src="./assets/logo.png" alt="company-logo" />
</a>
<div class="link-column flex">
<h4>Product</h4>
<a href="#" class="hover-links">Overview</a>
<a href="#" class="hover-links">Pricing</a>
<a href="#" class="hover-links">Usability Hub</a>
<a href="#" class="hover-links">Customers Page</a>
<a href="#" class="hover-links">Status Page</a>
</div>
<div class="link-column flex">
<h4>Methodology</h4>
<a href="#" class="hover-links">Overview</a>
<a href="#" class="hover-links">Pricing</a>
<a href="#" class="hover-links">Usability Hub</a>
<a href="#" class="hover-links">Customers Page</a>
<a href="#" class="hover-links">Status Page</a>
</div>
<div class="link-column flex">
<h4>Resources</h4>
<a href="#" class="hover-links">Overview</a>
<a href="#" class="hover-links">Pricing</a>
<a href="#" class="hover-links">Usability Hub</a>
<a href="#" class="hover-links">Customers Page</a>
<a href="#" class="hover-links">Status Page</a>
</div>
</div>
</footer>
<!-- sub-footer--------------------------------------------------- -->
<div class="sub-footer">
<div class="container flex sub-footer-container">
<a href="#" class="hover-links">Privacy Policy</a>
<a href="#" class="hover-links">Terms & Conditions</a>
<a href="#" class="hover-links">Security Information</a>
<a href="#" class="hover-links"><img src="./assets//facebook.png" alt="facebook" /></a>
<a href="#" class="hover-links"><img src="./assets/twitter.png" alt="twitter" /></a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>