-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathimages.html
715 lines (677 loc) · 42.4 KB
/
images.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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hoodie CSS Framework</title>
<link rel="stylesheet" href="./src/css/prod/hoodie.min.pref.css">
<script>
(function(){
function addFont() {
var style = document.createElement('style');
style.rel = 'stylesheet';
document.head.appendChild(style);
style.textContent = localStorage.firaSansWeb;
}
try {
if (localStorage.firaSansWeb) {
// The font is in localStorage, we can load it directly
addFont();
} else {
// We have to first load the font file asynchronously
var request = new XMLHttpRequest();
request.open('GET', 'http://hoodiehq.github.io/hoodie-css/src/css/fonts.css', true);
request.onload = function() {
if (request.status >= 200 && request.status < 400) {
// We save the file in localStorage
localStorage.firaSansWeb = request.responseText;
// ... and load the font
addFont();
}
};
request.send();
}
} catch(ex) {
// maybe load the font synchronously for woff-capable browsers
// to avoid blinking on every request when localStorage is not available
}
}());
</script>
</head>
<body class="gray">
<header>
<section class="nav">
</section>
</header>
<div class="content">
<div class="box">
<section class="cb teaser">
<aside>
<br />
<br />
<br />
<br />
<nav>
<a href="index.html">0. Intro & Contribute</a><br />
<a href="index.html">1. Preq & Setup / basic template</a><br />
<a href="index.html">1. Files, what & why?</a><br />
<a href="index.html">2. Customize your Website</a><br />
<a href="accessibility.html">3. Accessibility considerations</a><br />
<a href="colour-fonts.html">4. Colours and Fonts</a><br />
<a href="http://hood.ie/typographic-base.html" target="_blank">5. Typo & Icons</a><br />
<a href="images.html">6. Images</a><br />
<a href="index.html">7. Run Deployment, how to contribute and test all websites</a>
</nav>
</aside>
<article>
<h1>Our images for across all sites</h1>
<p>
Here you'll find a selection of all our images, you can use across all the hoodie related sites.
</p>
<ul>
<li><a href="#logos">Logos</a></li>
<li><a href="#icons">Icons</a></li>
<li><a href="#animals">Animals</a></li>
<li><a href="#community">Community</a></li>
<li><a href="#backgrounds">Backgrounds</a></li>
<li><a href="#apps">Apps</a></li>
<li><a href="#merchandise">Merchandise</a></li>
</ul>
</article>
</section>
<section id="logos" class="cb">
<article>
<h2>Logos for Header / Footer</h2>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_blue.png" alt="Logo Cut Blue">
<figcaption>
<strong>Logo Cut Blue</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_blue.png</small>
</figcaption>
</figure>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_blue.png" alt="Logo Cut Blue Negative">
<figcaption>
<strong>Logo Cut Blue Negative</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_blue.png</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_gray.png" alt="Logo Cut Gray">
<figcaption>
<strong>Logo Cut Gray</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_gray.png</small>
</figcaption>
</figure>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_gray.png" alt="Logo Cut Gray Negative">
<figcaption>
<strong>Logo Cut Gray Negative</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_gray.png</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_green.png" alt="Logo Cut Green">
<figcaption>
<strong>Logo Cut Green</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_green.png</small>
</figcaption>
</figure>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_green.png" alt="Logo Cut Green Negative">
<figcaption>
<strong>Logo Cut Green Negative</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_green.png</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_lilac.png" alt="Logo Cut Lilac">
<figcaption>
<strong>Logo Cut Lilac</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_lilac.png</small>
</figcaption>
</figure>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_lilac.png" alt="Logo Cut Lilac Negative">
<figcaption>
<strong>Logo Cut Lilac Negative</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_lilac.png</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_orange.png" alt="Logo Cut Orange">
<figcaption>
<strong>Logo Cut Orange</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_orange.png</small>
</figcaption>
</figure>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_orange.png" alt="Logo Cut Orange Negative">
<figcaption>
<strong>Logo Cut Orange Negative</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/css/img/logo_cut_negativ_orange.png</small>
</figcaption>
</figure>
</p>
</article>
</section>
<section id="icons" class="cb">
<svg style="display: none;">
<defs>
<g id="bubble">
<path d="M16 7c-5.96 0-11 3.21-11 7 0 0.28 0.22 0.5 0.5 0.5S6 14.28 6 14c0-3.2 4.67-6 10-6 0.28 0 0.5-0.22 0.5-0.5S16.28 7 16 7zM16 2C7.16 2 0 7.37 0 14c0 4.13 2.78 7.77 7.01 9.93C7.01 23.95 7 23.97 7 24c0 1.79-1.34 3.72-1.93 4.74 0 0 0 0 0 0C5.03 28.85 5 28.97 5 29.09 5 29.59 5.41 30 5.91 30 6 30 6.17 29.98 6.16 29.99c3.13-0.51 6.07-3.38 6.75-4.21C13.91 25.92 14.94 26 16 26c8.84 0 16-5.37 16-12C32 7.37 24.84 2 16 2zM16 24c-0.92 0-1.86-0.07-2.8-0.21 -0.1-0.02-0.19-0.02-0.29-0.02 -0.59 0-1.16 0.26-1.55 0.73 -0.43 0.52-1.65 1.68-3.08 2.54 0.39-0.89 0.7-1.9 0.72-2.93 0.01-0.06 0.01-0.13 0.01-0.18 0-0.75-0.42-1.44-1.09-1.78C4.21 20.25 2 17.21 2 14 2 8.49 8.28 4 16 4c7.72 0 14 4.49 14 10C30 19.51 23.72 24 16 24z"/>
</g>
<g id="calendar">
<path d="M29.33 3H25V1c0-0.55-0.45-1-1-1s-1 0.45-1 1v2h-6V1c0-0.55-0.45-1-1-1s-1 0.45-1 1v2H9V1c0-0.55-0.45-1-1-1S7 0.45 7 1v2H2.67C1.19 3 0 4.19 0 5.67v23.67C0 30.81 1.19 32 2.67 32h26.67C30.81 32 32 30.81 32 29.33V5.67C32 4.19 30.81 3 29.33 3zM30 29.33C30 29.7 29.7 30 29.33 30H2.67C2.3 30 2 29.7 2 29.33V5.67C2 5.3 2.3 5 2.67 5H7v2c0 0.55 0.45 1 1 1s1-0.45 1-1V5h6v2c0 0.55 0.45 1 1 1s1-0.45 1-1V5h6v2c0 0.55 0.45 1 1 1s1-0.45 1-1V5h4.33C29.7 5 30 5.3 30 5.67V29.33z"/>
<rect x="7" y="12" width="4" height="3"/>
<rect x="7" y="17" width="4" height="3"/>
<rect x="7" y="22" width="4" height="3"/>
<rect x="14" y="22" width="4" height="3"/>
<rect x="14" y="17" width="4" height="3"/>
<rect x="14" y="12" width="4" height="3"/>
<rect x="21" y="22" width="4" height="3"/>
<rect x="21" y="17" width="4" height="3"/>
<rect x="21" y="12" width="4" height="3"/>
</g>
<g id="diamond">
<path d="M31.414 9.677l-5.08-5.081C25.959 4.221 25.449 4.01 24.92 4.01H7.081c-0.53 0-1.039 0.211-1.414 0.586l-5.08 5.081C0.194 10.069-0.002 10.586 0 11.104c0.003 0.47 0.171 0.939 0.506 1.316l13.999 14.908C14.885 27.756 15.429 28 16 28c0.571 0 1.115-0.244 1.494-0.672l14-14.908c0.342-0.385 0.51-0.867 0.506-1.348C31.996 10.566 31.799 10.062 31.414 9.677zM18.219 11.01H13.78L16 9.161 18.219 11.01zM16.782 8.51l2.732-2.278 2.018 2.018L19 10.359 16.782 8.51zM13 10.359L10.468 8.25l2.018-2.018 2.733 2.278L13 10.359zM18.49 12.01L16 24.463 13.51 12.01H18.49zM19.51 12.01h4.906l-7.359 12.269L19.51 12.01zM19.779 11.01l2.463-2.051 2.051 2.051H19.779zM20.707 6.01h3.512l-1.916 1.597L20.707 6.01zM16 7.86l-2.22-1.85h4.438L16 7.86zM9.696 7.607L7.78 6.01h3.513L9.696 7.607zM9.758 8.959l2.462 2.051H7.707L9.758 8.959zM12.49 12.01l2.453 12.269L7.583 12.01H12.49zM12.704 22.488L2.864 12.01h3.554L12.704 22.488zM25.582 12.01h3.555l-9.842 10.48L25.582 12.01zM25.707 11.01l-2.693-2.693 2.297-1.915 4.607 4.608H25.707zM6.686 6.4l2.301 1.917L6.293 11.01H2.006L6.686 6.4z"/>
</g>
<g id="display">
<path d="M27 5L5 5C4.45 5 4 5.44 4 6v14c0 0.55 0.45 1 1 1h22c0.55 0 1-0.45 1-1v-14C28 5.44 27.55 5 27 5zM27 20H5V6h22V20zM29 1H3C1.34 1 0 2.34 0 4v20c0 1.65 1.34 2.99 2.99 3H13v1.22l-6.24 0.81C6.31 29.14 6 29.54 6 30c0 0.55 0.45 1 1 1h18c0.55 0 1-0.45 1-1 0-0.46-0.31-0.86-0.76-0.97L19 28.22v-1.22h10.01C30.66 26.99 32 25.65 32 24V4C32 2.34 30.66 1 29 1zM30 24c0 0.55-0.45 1-1 1h-9 -8H3c-0.55 0-1-0.45-1-1V4c0-0.55 0.45-1 1-1h26c0.55 0 1 0.45 1 1V24z"/>
</g>
<g id="megaphone">
<path d="M25 0c-2.053 0-3.666 1.41-4.824 3.586l-0.021-0.012C18.473 6.867 15.969 9 13.226 9h-0.663H8.156 4c-2.243 0-4 2.197-4 5 0 2.805 1.757 5 4 5 1.103 0.004 1.995 0.896 1.995 2v9c0 1.105 0.896 2 2 2h4c1.104 0 2-0.895 2-2v-1c0-1-1-1.447-1-2v-7c0-0.023 0.016-0.039 0.018-0.062 0.01-0.143 0.049-0.275 0.112-0.395 0.018-0.033 0.037-0.059 0.059-0.088 0.08-0.119 0.181-0.217 0.304-0.293 0.006-0.004 0.008-0.01 0.014-0.014 0.004 0 0.007-0.004 0.011-0.004 0.08-0.045 0.176-0.055 0.266-0.08 2.524 0.268 4.809 2.305 6.377 5.373l0.025-0.012C21.34 26.594 22.949 28 25 28c4.596 0 7-7.043 7-14S29.596 0 25 0zM20 14c0-1.037 0.061-2.039 0.164-3H23c1.104 0 2 1.344 2 3 0 1.658-0.896 3-2 3h-2.836C20.061 16.039 20 15.039 20 14zM2 14c0-1.656 0.896-3 2-3h4.156H9h2.014C10.394 11.729 10 12.787 10 14c0 1.215 0.394 2.273 1.014 3H9 4C2.896 17 2 15.658 2 14zM11.995 30h-4v-9c0-0.729-0.195-1.41-0.537-2h0.698v0.012h3.008c-0.107 0.311-0.169 0.641-0.169 0.988v7c0 0.963 0.538 1.604 0.859 1.986 0.044 0.053 0.096 0.107 0.141 0.166V30zM13.226 17.012H13V17c-1.104 0-2-1.342-2-3 0-1.656 0.896-3 2-3h0.226c1.886 0 3.652-0.742 5.206-2.018C18.146 10.592 18 12.297 18 14c0 1.709 0.146 3.42 0.434 5.031C16.879 17.754 15.112 17.012 13.226 17.012zM25 26c-2.018 0-3.75-2.871-4.541-7H23c2.242 0 4-2.195 4-5 0-2.803-1.758-5-4-5h-2.541C21.25 4.873 22.982 2 25 2c2.762 0 5 5.373 5 12S27.762 26 25 26z"/>
</g>
<g id="note">
<path d="M31.4 7.6l-6-6C25 1.2 24.5 1 24 1H3C1.3 1 0 2.3 0 4v24c0 1.7 1.3 3 3 3h26c1.7 0 3-1.3 3-3V9C32 8.5 31.8 8 31.4 7.6zM30 28c0 0.6-0.4 1-1 1H3c-0.6 0-1-0.4-1-1V4c0-0.6 0.4-1 1-1h20v4h0c0 1.7 1.3 3 3 3h1H30V28zM27 9h-1c-1.1 0-2-0.9-2-2H24V3l6 6H27zM15.5 8h5C20.8 8 21 7.8 21 7.5S20.8 7 20.5 7h-5C15.2 7 15 7.2 15 7.5S15.2 8 15.5 8zM15.5 11h5c0.3 0 0.5-0.2 0.5-0.5S20.8 10 20.5 10h-5c-0.3 0-0.5 0.2-0.5 0.5S15.2 11 15.5 11zM15 13.5c0 0.3 0.2 0.5 0.5 0.5h12c0.3 0 0.5-0.2 0.5-0.5S27.8 13 27.5 13h-12C15.2 13 15 13.2 15 13.5zM27.5 19h-23C4.2 19 4 19.2 4 19.5 4 19.8 4.2 20 4.5 20h23c0.3 0 0.5-0.2 0.5-0.5C28 19.2 27.8 19 27.5 19zM27.5 22h-23C4.2 22 4 22.2 4 22.5 4 22.8 4.2 23 4.5 23h23c0.3 0 0.5-0.2 0.5-0.5C28 22.2 27.8 22 27.5 22zM27.5 25h-23C4.2 25 4 25.2 4 25.5 4 25.8 4.2 26 4.5 26h23c0.3 0 0.5-0.2 0.5-0.5C28 25.2 27.8 25 27.5 25zM27.5 16h-23C4.2 16 4 16.2 4 16.5S4.2 17 4.5 17h23c0.3 0 0.5-0.2 0.5-0.5S27.8 16 27.5 16zM5 14h7c0.6 0 1-0.4 1-1V7c0-0.6-0.4-1-1-1H5C4.4 6 4 6.4 4 7v6C4 13.6 4.4 14 5 14zM6 8h5v4H6V8z"/>
</g>
<g id="paperplane">
<path d="M31.543 0.16C31.377 0.053 31.188 0 31 0c-0.193 0-0.387 0.055-0.555 0.168l-30 20c-0.309 0.205-0.479 0.566-0.439 0.936 0.038 0.369 0.278 0.688 0.623 0.824l7.824 3.131 3.679 6.438c0.176 0.309 0.503 0.5 0.857 0.504 0.004 0 0.007 0 0.011 0 0.351 0 0.677-0.186 0.857-0.486l2.077-3.463 9.695 3.877C25.748 31.977 25.873 32 26 32c0.17 0 0.338-0.043 0.49-0.129 0.264-0.148 0.445-0.408 0.496-0.707l5-30C32.051 0.771 31.877 0.377 31.543 0.16zM3.136 20.777L26.311 5.326 9.461 23.363c-0.089-0.053-0.168-0.123-0.266-0.162L3.136 20.777zM10.189 24.066c-0.002-0.004-0.005-0.006-0.007-0.01L29.125 3.781 12.976 28.943 10.189 24.066zM25.217 29.609l-8.541-3.416c-0.203-0.08-0.414-0.107-0.623-0.119L29.205 5.686 25.217 29.609z"/>
</g>
<g id="pen">
<path d="M29.4 2.58C27.75 0.94 25.58 0 23.45 0c-1.8 0-3.46 0.67-4.67 1.88l-4.87 4.9c-0.01 0.01-0.03 0.02-0.05 0.04 -0.01 0.01-0.01 0.02-0.02 0.03l0 0L3.52 17.26c-0.48 0.47-0.82 1.06-1.01 1.71l-2.35 8.51C0.15 27.49 0 28.16 0 28.5 0 30.43 1.57 32 3.5 32c0.39 0 1.13-0.18 1.16-0.19l8.48-2.23c0.64-0.19 1.23-0.54 1.71-1.02l15.26-15.38C32.88 10.41 32.57 5.75 29.4 2.58zM16.01 23.8c-0.08-0.9-0.34-1.79-0.72-2.63l9.46-9.45c0.58 1.83 0.28 3.74-0.99 5 -0.01 0.01-0.02 0.01-0.02 0.02l0.01 0.01 -7.73 7.79C16.02 24.29 16.04 24.05 16.01 23.8zM14.79 20.26c-0.37-0.61-0.8-1.2-1.32-1.73 -0.61-0.61-1.31-1.09-2.04-1.49l9.53-9.53c0.75 0.33 1.47 0.81 2.1 1.44 0.54 0.54 0.96 1.14 1.28 1.77L14.79 20.26zM10.49 16.56c-0.93-0.37-1.9-0.59-2.87-0.6l7.7-7.76c1.18-1.15 2.9-1.48 4.59-1.06L10.49 16.56zM4.17 29.87C4.06 29.9 3.72 29.98 3.49 30 2.67 29.99 2 29.32 2 28.5c0.01-0.17 0.08-0.46 0.1-0.56l1.05-3.81c1.14-0.03 2.37 0.41 3.34 1.38 0.98 0.98 1.44 2.23 1.39 3.39L4.17 29.87zM8.87 28.64c-0.02-1.34-0.57-2.74-1.67-3.84C6.16 23.76 4.8 23.15 3.44 23.1l1-3.61c0.07-0.24 0.22-0.48 0.39-0.68 2.01-1.44 5.09-1.01 7.23 1.13 2.27 2.27 2.62 5.59 0.87 7.57 -0.12 0.06-0.23 0.12-0.36 0.16L8.87 28.64zM28.69 11.77l-1.68 1.7c0-0.23 0.03-0.44 0.01-0.67 -0.18-1.93-1.08-3.81-2.54-5.27 -1.63-1.63-3.79-2.56-5.93-2.57l1.66-1.67C21.03 2.46 22.18 2 23.45 2c1.61 0 3.26 0.73 4.53 2 1.19 1.19 1.9 2.67 2.01 4.17C30.08 9.56 29.62 10.84 28.69 11.77z"/>
</g>
<g id="star">
<path d="M31.9 12.6c-0.3-0.8-1-1.4-1.8-1.5l-8.3-1.2 -3.6-7.5C17.7 1.5 16.9 1 16 1c-0.9 0-1.7 0.5-2.1 1.3l-3.6 7.5 -8.3 1.2c-0.9 0.1-1.6 0.7-1.8 1.5 -0.3 0.8-0.1 1.7 0.5 2.3l6.1 6.1 -1.4 8.5C5.2 30.2 5.6 31.1 6.3 31.6 6.7 31.9 7.2 32 7.6 32c0.4 0 0.8-0.1 1.1-0.3L16 27.8l7.3 3.9C23.6 31.9 24 32 24.4 32c0.5 0 0.9-0.1 1.3-0.4 0.7-0.5 1.1-1.4 0.9-2.2l-1.4-8.5 6.1-6.1C31.9 14.2 32.2 13.4 31.9 12.6zM23.6 19.4c-0.5 0.5-0.7 1.2-0.6 1.9l1.4 8.5 -7.3-3.9c-0.3-0.2-0.7-0.3-1.1-0.3 -0.4 0-0.8 0.1-1.1 0.3l-7.3 3.9 1.4-8.5c0.1-0.7-0.1-1.4-0.6-1.9l-6.1-6.1 8.3-1.2c0.8-0.1 1.4-0.6 1.7-1.3L16 3.3l3.6 7.5c0.3 0.7 1 1.2 1.7 1.3l8.3 1.2L23.6 19.4z"/>
</g>
<g id="t-shirt">
<path d="M31.25 6.44l-5-4C25.9 2.15 25.45 2 25 2H7C6.55 2 6.11 2.15 5.75 2.44l-5 4C0.1 6.96-0.16 7.84 0.1 8.63l2 6c0.2 0.59 0.66 1.06 1.25 1.26C3.56 15.96 3.78 16 4 16c0.35 0 0.69-0.09 1-0.27V28c0 1.1 0.9 2 2 2h18c1.1 0 2-0.9 2-2V15.73C27.31 15.91 27.65 16 28 16c0.22 0 0.44-0.04 0.65-0.11 0.59-0.2 1.05-0.67 1.25-1.26l2-6C32.16 7.84 31.9 6.96 31.25 6.44zM19.75 4C19.2 5.16 17.74 6 16 6c-1.74 0-3.2-0.84-3.75-2H19.75zM28 14l-3-2v16H7V12l-3 2L2 8l5-4h4.18C11.73 5.72 13.67 7 16 7c2.33 0 4.27-1.28 4.82-3H25l5 4L28 14z"/>
</g>
<g id="truck">
<path d="M24.8 11.4C24.6 11.2 24.3 11 24 11h-1c-0.6 0-1 0.4-1 1v6c0 0.6 0.4 1 1 1h4c0.6 0 1-0.4 1-1v-1.5c0-0.2-0.1-0.4-0.2-0.6L24.8 11.4zM27 18h-4v-6h1l3 4.5V18zM31.5 15.3l-4-6C26.9 8.5 26 8 25 8h-4V6c0-1.7-1.3-3-3-3H3C1.3 3 0 4.3 0 6v11c0 1.7 1.3 3 3 3h0v3c0 1.7 1.3 3 3 3h1.1c0.4 1.7 2 3 3.9 3 1.9 0 3.4-1.3 3.9-3h5.3c0.4 1.7 2 3 3.9 3 1.9 0 3.4-1.3 3.9-3H29c1.7 0 3-1.3 3-3v-6C32 16.4 31.8 15.8 31.5 15.3zM3 18c-0.6 0-1-0.4-1-1V6c0-0.6 0.4-1 1-1h15c0.6 0 1 0.4 1 1v2 2 7c0 0.6-0.4 1-1 1H3zM11 27c-1.1 0-2-0.9-2-2s0.9-2 2-2c1.1 0 2 0.9 2 2S12.1 27 11 27zM24 27c-1.1 0-2-0.9-2-2s0.9-2 2-2c1.1 0 2 0.9 2 2S25.1 27 24 27zM30 23c0 0.6-0.4 1-1 1h-1.1c-0.4-1.7-2-3-3.9-3 -1.9 0-3.4 1.3-3.9 3h-5.3c-0.4-1.7-2-3-3.9-3 -1.9 0-3.4 1.3-3.9 3H6c-0.6 0-1-0.4-1-1v-3h13c1.7 0 3-1.3 3-3v-7h4c0.3 0 0.6 0.2 0.8 0.4l4 6C29.9 16.6 30 16.8 30 17V23z"/>
</g>
</defs>
</svg>
<article>
<h2>Icons </h2>
<p>
Our Icons we use. The icons are SVG's. You need to add the path to your html (per include or in your site, which is described as below each of the following icons.
</p>
<p>
<svg class="icon-bubble" width="32" height="32">
<use xlink:href="#bubble" />
</svg>
<pre>
<code class="language-javascript">
<svg style="display: none;">
<defs>
<g id="bubble">
<path d="M16 7c-5.96 0-11 3.21-11 7 0 0.28 0.22 0.5 0.5 0.5S6 14.28 6 14c0-3.2 4.67-6 10-6 0.28 0 0.5-0.22 0.5-0.5S16.28 7 16 7zM16 2C7.16 2 0 7.37 0 14c0 4.13 2.78 7.77 7.01 9.93C7.01 23.95 7 23.97 7 24c0 1.79-1.34 3.72-1.93 4.74 0 0 0 0 0 0C5.03 28.85 5 28.97 5 29.09 5 29.59 5.41 30 5.91 30 6 30 6.17 29.98 6.16 29.99c3.13-0.51 6.07-3.38 6.75-4.21C13.91 25.92 14.94 26 16 26c8.84 0 16-5.37 16-12C32 7.37 24.84 2 16 2zM16 24c-0.92 0-1.86-0.07-2.8-0.21 -0.1-0.02-0.19-0.02-0.29-0.02 -0.59 0-1.16 0.26-1.55 0.73 -0.43 0.52-1.65 1.68-3.08 2.54 0.39-0.89 0.7-1.9 0.72-2.93 0.01-0.06 0.01-0.13 0.01-0.18 0-0.75-0.42-1.44-1.09-1.78C4.21 20.25 2 17.21 2 14 2 8.49 8.28 4 16 4c7.72 0 14 4.49 14 10C30 19.51 23.72 24 16 24z"/>
</g>
</defs>
</svg>
</code>
</pre>
</p>
<p>
<svg class="icon-calendar" width="32" height="32">
<use xlink:href="#calendar" />
</svg>
<svg class="icon-diamon" width="32" height="32">
<use xlink:href="#diamond" />
</svg>
<svg class="icon-display" width="32" height="32">
<use xlink:href="#display" />
</svg>
<svg class="icon-megaphone" width="32" height="32">
<use xlink:href="#megaphone" />
</svg>
<svg class="icon-note" width="32" height="32">
<use xlink:href="#note" />
</svg>
<svg class="icon-paperplane" width="32" height="32">
<use xlink:href="#paperplane" />
</svg>
<svg class="icon-pen" width="32" height="32">
<use xlink:href="#pen" />
</svg>
<svg class="icon-star" width="32" height="32">
<use xlink:href="#star" />
</svg>
<svg class="icon-t-shirt" width="32" height="32">
<use xlink:href="#t-shirt" />
</svg>
<svg class="icon-truck" width="32" height="32">
<use xlink:href="#truck" />
</svg>
</p>
</article>
</section>
<section id="animals" class="cb">
<article>
<h2>Content: Animals</h2>
<small>All illustrations made by <a href="http://www.carolinabuzio.com/" target="_blank"> http://www.carolinabuzio.com/</a></small>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/animals/low-profile-dog-1.png" alt="Low Profile Dog 1">
<figcaption>
<strong>Low Profile Dog 1</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/animals/low-profile-dog-1.png </small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/animals/low-profile-dog-2.png" alt="Low Profile Dog 2">
<figcaption>
<strong>Low Profile Dog 2</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/animals/low-profile-dog-2.png </small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/animals/low-profile-dog-3.png" alt="Low Profile Dog 3">
<figcaption>
<strong>Low Profile Dog 3</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/animals/low-profile-dog-3.png </small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/animals/docs-chicken-1.png" alt="Docs Chicken 1">
<figcaption>
<strong>Docs Chicken 1</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/animals/docs-chicken-1.png</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/animals/coming-soon.png" alt="coming soon">
<figcaption>
<strong>Coming Soon</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/animals/coming-soon.png </small>
</figcaption>
</figure>
</p>
</article>
</section>
<section id="community" class="cb">
<article>
<h2>Content: Community</h2>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/alex-feyerke.jpg" alt="Alex Feyerke">
<figcaption>
<strong>Alex Feyerke - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/alex-feyerke.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/alex-feyerke--hover.jpg" alt="Alex Feyerke">
<figcaption>
<strong>Alex Feyerke - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/alex-feyerke--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/caolen-mcmahon.jpg" alt="Caolen McMahon">
<figcaption>
<strong>Caolen McMahon - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/caolen-mcmahon.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/caolen-mcmahon--hover.jpg" alt="Caolen McMahon">
<figcaption>
<strong>Caolen McMahon - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/caolen-mcmahon--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/carolina-buzio.jpg" alt="Carolina Buzio">
<figcaption>
<strong>Carolina Buzio - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/carolina-buzio.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/carolina-buzio--hover.jpg" alt="Carolina Buzio">
<figcaption>
<strong>Carolina Buzio - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/carolina-buzio--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/gregor-martynus.jpg" alt="Gregor Martynus">
<figcaption>
<strong>Gregor Martynus - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/gregor-martynus.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/gregor-martynus--hover.jpg" alt="Gregor Martynus">
<figcaption>
<strong>Gregor Martynus - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/gregor-martynus--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/jan-erik-rediger.jpg" alt="Jan-Erik Rediger">
<figcaption>
<strong>Jan-Erik Rediger - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/jan-erik-rediger.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/jan-erik-rediger--hover.jpg" alt="Jan-Erik Rediger">
<figcaption>
<strong>Jan-Erik Rediger - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/jan-erik-rediger--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/jan-lenhardt.jpg" alt="Jan Lenhardt">
<figcaption>
<strong>Gregor Martynus - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/jan-lenhardt.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/jan-lenhardt--hover.jpg" alt="Gregor Martynus">
<figcaption>
<strong>Gregor Martynus - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/jan-lenhardt--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/julia-schmidt.jpg" alt="Julia Schmidt">
<figcaption>
<strong>Julia Schmidt - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/julia-schmidt.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/julia-schmidt--hover.jpg" alt="Julia Schmidt">
<figcaption>
<strong>Julia Schmidt - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/julia-schmidt--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/katrin-apel.jpg" alt="Katrin Apel">
<figcaption>
<strong>Katrin Apel - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/katrin-apel.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/katrin-apel--hover.jpg" alt="Katrin Apel">
<figcaption>
<strong>Katrin Apel - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/katrin-apel--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/kevin-lorenz.jpg" alt="Kevin Lorenz">
<figcaption>
<strong>Kevin Lorenz - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/kevin-lorenz.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/kevin-lorenz--hover.jpg" alt="Kevin Lorenz">
<figcaption>
<strong>Kevin Lorenz - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/kevin-lorenz--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/lena-reinhard.jpg" alt="Lena Reinhard">
<figcaption>
<strong>Lena Reinhard - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/lena-reinhard.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/lena-reinhard--hover.jpg" alt="Lena Reinhard">
<figcaption>
<strong>Lena Reinhard - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/lena-reinhard--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/lewis-cowper.jpg" alt="Lewis Cowper">
<figcaption>
<strong>Lewis Cowper - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/lewis-cowper.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/lewis-cowper--hover.jpg" alt="Lewis Cowper">
<figcaption>
<strong>Lewis Cowper - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/lewis-cowper--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/ola-gasidlo.jpg" alt="Ola Gasidlo">
<figcaption>
<strong>Ola Gasidlo - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/ola-gasidlo.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/ola-gasidlo--hover.jpg" alt="Ola Gasidlo">
<figcaption>
<strong>Ola Gasidlo - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/ola-gasidlo--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/stephan-boennemann.jpg" alt="Stephan Boennemann">
<figcaption>
<strong>Stephan Boennemann - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/stephan-boennemann.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/stephan-boennemann--hover.jpg" alt="Stephan Boennemann">
<figcaption>
<strong>Stephan Boennemann - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/stephan-boennemann--hover.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/sven-lito.jpg" alt="Sven Lito">
<figcaption>
<strong>Sven Lito - sw</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/default-sw/sven-lito.jpg</small>
</figcaption>
</figure>
<br />
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/sven-lito--hover.jpg" alt="Sven Lito">
<figcaption>
<strong>Sven Lito - colour</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/community/hover-bunt/sven-lito--hover.jpg</small>
</figcaption>
</figure>
</p>
</article>
</section>
<section id="backgrounds" class="cb">
<article>
<h2>Content: (Teaser) Backgrounds</h2>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/index/contribute.jpg" alt="Contribute 1">
<figcaption>
<strong>Contribute 1 </strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/index/contribute.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/index/contribute2.jpg" alt="Contribute 2">
<figcaption>
<strong>Contribute 2 </strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/index/contribute2.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/index/feature.jpg" alt="Feature">
<figcaption>
<strong>Feature </strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/index/feature.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/index/index1.jpg" alt="Index 1">
<figcaption>
<strong>Index 1</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/index/index1.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/index/index_merch.jpg" alt="Index Merch">
<figcaption>
<strong>Index Merch</strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/index/index_merch.jpg</small>
</figcaption>
</figure>
</p>
</article>
</section>
<section id="apps" class="cb">
<article>
<h2>Content: Apps</h2>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/initiatives/faq.png" alt="FAQ">
<figcaption>
<strong>FAQ </strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/initiatives/faq.png</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/initiatives/milestones.png" alt="Milestones">
<figcaption>
<strong>Milestones </strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/initiatives/milestones.png</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/initiatives/ubersicht.png" alt="Ubersicht">
<figcaption>
<strong>Ubersicht </strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/initiatives/ubersicht.png</small>
</figcaption>
</figure>
</p>
</article>
</section>
<section id="merchandise" class="cb">
<article>
<h2>Content: Merchandise</h2>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/merchandise/sticker-x1-5.jpg" alt="Sticker">
<figcaption>
<strong>Sticker </strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/merchandise/sticker-x1-5.jpg</small>
</figcaption>
</figure>
</p>
<p>
<figure>
<img src="http://hoodiehq.github.io/hoodie-css/src/content_img/merchandise/t-shirt-x1-5.jpg" alt="Shirt">
<figcaption>
<strong>Shirt </strong> <br />
<small>http://hoodiehq.github.io/hoodie-css/src/content_img/merchandise/t-shirt-x1-5.jpg</small>
</figcaption>
</figure>
</p>
</article>
</section>
</div>
</div>
<footer>
<div class="footer">
<section class="cb footer-licensing">
<small>© 2012-2015 <a href="https://github.com/hoodiehq" target="_blank">the Hoodie Community</a> and other <a href="http://hood.ie/community#contributors">contributors</a>. Hoodie is licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html" target="_blank">Apache License 2.0</a>.<br />All pictures, photos and illustrations are owned by the Hoodie Open Source Project and licensed under <a href="http://creativecommons.org/licenses/by-nc-nd/4.0/deed.en" target="_blank">CC BY-NC-ND 4.0</a>.</small>
</section>
</div>
</footer>
</body>
</html>