-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
372 lines (368 loc) · 14.9 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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header class="header">
<div class="header__bar">
<h1 class="header__logo">
<span class="header__logo-text">TREEHOUSE</span>
</h1>
<nav class="header__menu" id="menu-list">
<div class="hamburger">
<button class="btn hamburger__btn" aria-expanded="false" aria-controls="menu-list">
<span class="hamburger__outer">
<span class="hamburger__inner"></span>
</span>
<span class="btn__content btn__content--sr-only">
Open menu
</span>
</button>
</div>
<ul class="header__menu-list">
<li class="header__list-item">
<a href="" class="header__link link">Home</a>
</li>
<li class="header__list-item">
<a href="" class="header__link link">About</a>
</li>
<li class="header__list-item">
<a href="" class="header__link link">Blog</a>
</li>
<li class="header__list-item">
<a href="" class="header__link link">Portfolio</a>
</li>
<li class="header__list-item">
<a href="" class="header__link link">Contact</a>
</li>
</ul>
</nav>
</div>
<section class="section header__banner">
<h2 class="section__heading section__heading--white section__heading--big">Creative digital solutions</h2>
<p class="section__text section__text--light-gray">Proin iaculis purus consequat sem cure.</p>
<a href="" class="link section__link">View portfolio</a>
</section>
</header>
<main>
<section class="section services">
<header class="section__header">
<h2 class="section__heading">Personal services</h2>
<p class="section__text section__header-text">Proin iaculis purus consequat sem cure.</p>
</header>
<div class="services__container">
<div class="services__item">
<h3 class="section__heading section__heading--small">Beautiful designs</h3>
<p class="section__text section__text--small">
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
</div>
<div class="services__item">
<h3 class="section__heading section__heading--small">Responsive web</h3>
<p class="section__text section__text--small">
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
</div>
<div class="services__item">
<h3 class="section__heading section__heading--small">Marketing tools</h3>
<p class="section__text section__text--small">
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
</div>
</div>
<div class="services__offers">
<div class="section__content services__content">
<h3 class="section__heading section__heading--white services__heading">
<span>
Just relax <span class="ampersand">&</span>
</span>
let us do the heavy lifting</h3>
<p class="section__text section__text--small section__text--light-gray services__text">
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
<ul class="services__offers-list">
<li class="services__list-item">Initial setup & customizations</li>
<li class="services__list-item">Regular updates</li>
<li class="services__list-item">Round the clock support</li>
</ul>
<div class="services__link">
<a href="" class="link section__link">Learn more</a>
</div>
</div>
</div>
</section>
<section class="section projects">
<header class="section__header">
<h2 class="section__heading">Latest projects</h2>
<p class="section__text section__header-text">Proin iaculis purus consequat sem cure.</p>
</header>
<div class="section__content projects__content">
<h3 class="section__heading section__heading--small projects__heading">Developing a framework</h3>
<p class="section__text section__text--small section__text--left">
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
<ul class="projects__list">
<li class="projects__list-item">
<span>E-commerce ready</span>
<span class="section__text projects__text">
Proin iaculis purus consequat sem cure
digni ssim.
</span>
</li>
<li class="projects__list-item">
Powerful SEO features
<span class="section__text projects__text">
Proin iaculis purus consequat sem cure
digni ssim.
</span>
</li>
<li class="projects__list-item">
Secure encryption
<span class="section__text projects__text">
Proin iaculis purus consequat sem cure
digni ssim.
</span>
</li>
</ul>
<p class="section__text section__text--small section__text--left">
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
<a href="" class="link section__link projects__link">
View details
<span class="link__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14.468 11.1">
<path id="Arrow-Right" class="icon-arrow"
d="M362.4,2511.46l-4.672-4.67a0.854,0.854,0,0,0-1.217,0,0.864,0.864,0,0,0,0,1.22l3.2,3.2H349.044a0.86,0.86,0,1,0,0,1.72h10.665l-3.2,3.21a0.864,0.864,0,0,0,0,1.22,0.866,0.866,0,0,0,1.217,0l4.672-4.68a0.86,0.86,0,0,0,.252-0.61A0.878,0.878,0,0,0,362.4,2511.46Z"
transform="translate(-348.188 -2506.53)" />
</svg>
</span>
</a>
</div>
</section>
<section class="section values">
<header class="section__header">
<h2 class="section__heading">Culture & values</h2>
<p class="section__text section__header-text">Proin iaculis purus consequat sem cure.</p>
</header>
<div class="section__container">
<div class="section__box music-icon">
<h3 class="section__heading section__heading--small">Work-life balance</h3>
<p class="section__text section__text--small">
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
</div>
<div class="section__box graph-icon">
<h3 class="section__heading section__heading--small">Quality over quantity</h3>
<p class="section__text section__text--small">
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
</div>
<div class="section__box star-icon">
<h3 class="section__heading section__heading--small">Deliver excelence</h3>
<p class="section__text section__text--small">
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
</div>
</div>
</section>
<section class="section reviews">
<header class="section__header">
<h2 class="section__heading">Our awesome clients</h2>
<p class="section__text section__header-text">Proin iaculis purus consequat sem cure.</p>
</header>
<div class="section__content reviews__content">
<div class="reviews__review">
<blockquote class="reviews__quote">
Proin iaculis purus consequat sem cure digni ssim
donec porttitora entum suscipit aenean rhoncus.
</blockquote>
<address class="reviews__author">- Jamie Richardson, Founder of Cocoa Media</address>
</div>
<div class="reviews__review">
<blockquote class="reviews__quote">
Proin iaculis purus consequat sem cure digni ssim
donec porttitora entum suscipit aenean rhoncus.
</blockquote>
<address class="reviews__author">- Kim Thompson, Founder of Rainel</address>
</div>
</div>
</section>
<section class="section contact">
<header class="section__header">
<h2 class="section__heading section__heading--white">
Ready to talk about your next project?
</h2>
</header>
<a href="" class="link contact__link">
Contact us
</a>
</section>
<section class="section logos">
<div class="section__image">
<img src="./img/Envato.png" alt="">
</div>
<div class="section__image">
<img src="./img/WordPress.png" alt="">
</div>
<div class="section__image">
<img src="./img/Tuts+.png" alt="">
</div>
<div class="section__image">
<img src="./img/Microlancer.png" alt="">
</div>
</section>
</main>
<footer>
<div class="footer__content">
<div class="footer__row">
<div class="footer__column">
<p class="footer__text footer__text--big">Contact us</p>
<div class="footer__item">
<span class="icon marker__icon" aria-hidden="true"></span>
<div class="footer__text-container">
<p class="footer__text">55 Main St.</p>
<p class="footer__text">Toronto, ON</p>
<p class="footer__text">M1H 3A5</p>
</div>
</div>
<div class="footer__item">
<span class="icon phone__icon" aria-hidden="true"></span>
<div class="footer__text-container">
<a class="link footer__link" href="tel:4165555252">
(416) 555 5252
</a>
</div>
</div>
<div class="footer__item">
<span class="icon envelope__icon" aria-hidden="true"></span>
<div class="footer__text-container">
<a class="link footer__link" href="mailto:[email protected]">
</a>
</div>
</div>
</div>
<div class="footer__column">
<p class="footer__text footer__text--big">Latest posts</p>
<div class="footer__item">
<span class="icon news__icon" aria-hidden="true"></span>
<div class="footer__text-container">
<a href="" class="link footer__link">Made with love in Toronto</a>
</div>
</div>
<div class="footer__item">
<span class="icon photo__icon" aria-hidden="true"></span>
<div class="footer__text-container">
<a href="" class="link footer__link">Made with love in Toronto</a>
</div>
</div>
<div class="footer__item">
<span class="icon news__icon" aria-hidden="true"></span>
<div class="footer__text-container">
<a href="" class="link footer__link">Made with love in Toronto</a>
</div>
</div>
<div class="footer__item">
<span class="icon news__icon" aria-hidden="true"></span>
<div class="footer__text-container">
<a href="" class="link footer__link">Made with love in Toronto</a>
</div>
</div>
<div class="footer__item">
<span class="icon media__icon" aria-hidden="true"></span>
<div class="footer__text-container">
<a href="" class="link footer__link">Made with love in Toronto</a>
</div>
</div>
</div>
<div class="footer__column">
<p class="footer__text footer__text--big">Latest tweets</p>
<div class="footer__item">
<span class="icon twitter__icon" aria-hidden="true"></span>
<div class="footer__text-container tweet">
<a href="" class="link footer__link">
Confucius: Life is really simple,
but we insist on making it
complicated.
</a>
<div class="tweet__tags">
<span class="tweet__tag">#famousquotes</span>
</div>
<p class="tweet__pub-date">2 hours ago</p>
</div>
</div>
<div class="footer__item">
<span class="icon twitter__icon" aria-hidden="true"></span>
<div class="footer__text-container tweet">
<a href="" class="link footer__link">
Confucius: Life is really simple,
but we insist on making it
complicated.
</a>
<div class="tweet__tags">
<span class="tweet__tag">#famousquotes</span>
</div>
<p class="tweet__pub-date">2 hours ago</p>
</div>
</div>
</div>
</div>
</div>
<div class="footer__content footer__content--white">
<div class="footer__row">
<p class="footer__copyright">
© Copyright 2014 FreebiesXpress.com
</p>
<div class="footer__socials">
<div class="footer__social">
<a href="" class="link">
<img src="./img/Twitter.png" alt="Przejdź do naszego twittera" class="footer__social-icon">
</a>
</div>
<div class="footer__social">
<a href="" class="link">
<img src="./img/Facebook.png" alt="Przejdź do naszej strony na facebooku" class="footer__social-icon">
</a>
</div>
<div class="footer__social">
<a href="" class="link">
<img src="./img/Pinterest.png" alt="Przejdź na nasz Pinterest" class="footer__social-icon">
</a>
</div>
<div class="footer__social">
<a href="" class="link">
<img src="./img/Google+.png" alt="Przejdź do naszego profilu na google plus" class="footer__social-icon">
</a>
</div>
</div>
</div>
</div>
</footer>
<script src="./index.js"></script>
</body>
</html>