forked from gdm-201516-mmp2/nmdad1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (98 loc) · 3.35 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
<!DOCTYPE html>
<html lang="nl-be" dir="ltr">
<head>
<meta charset="UTF-8">
<title>Random user generator | RandomUserMe | API</title>
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1">
<link rel="stylesheet" href="css/vendor/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-custom.js"></script>
</head>
<body>
<div class="grid__wrapper header-wrapper">
<div class="grid__container">
<div class="grid__row">
<div class="grid__column-bp1-12">
<header>
<section class="header__logo">
<h1><span>RandomUserMe</span></h1>
<h2>Random user generator</h2>
</section>
</header>
</div>
</div>
</div>
</div>
<div class="grid__wrapper">
<div class="grid__container">
<div class="grid__row">
<div class="grid__column-bp1-12">
<section class="rum-users">
<ul>
<li class="user" data-id="bomenfluisteraar">
<picture class="user__picture">
<img src="http://lorempixel.com/200/200/people/9/" alt="Picture for the user: Bosfee" />
</picture>
<span class="user__name">Bosfee</span>
<a class="user__details-link" href="#" title="Details for the user: Bosfee">
<span class="fa fa-chevron-right"></span>
</a>
<section class="user__details">
<ul>
<li>
<span class="fa fa-user "></span>bomenfluisteraar
</li>
<li>
<span class="fa fa-envelope "></span>[email protected]
</li>
<li>
<span class="fa fa-lock "></span>slakoolraap
</li>
<li>
<span class="fa fa-calendar "></span>12/06/1979
</li>
<li>
<span class="fa fa-phone "></span>0495 62 358
</li>
<li>
<span class="fa fa-mobile-phone "></span>04965 32 65
</li>
<li>
<span class="fa fa-map-marker "></span>Industrieweg 232
</li>
<li>
<span class="fa fa-registered "></span>16/11/2015
</li>
</ul>
</section>
</li>
<li class="user" data-id="jonagold">
<picture class="user__picture">
<img src="http://lorempixel.com/200/200/people/8/" alt="Picture for the user: Jorn Brak" />
</picture>
<span class="user__name">Jona Gold</span>
<a class="user__details-link" href="#" title="Details for the user: Jorn Brak">
<span class="fa fa-chevron-right"></span>
</a>
</li>
<li class="user" data-id="draco12">
<picture class="user__picture">
<img src="http://lorempixel.com/200/200/people/7/" alt="Picture for the user: Dries Mertens" />
</picture>
<span class="user__name">Dries Mertens</span>
<a class="user__details-link" href="#" title="Details for the user: Dries Mertens">
<span class="fa fa-chevron-right"></span>
</a>
</li>
</ul>
</section>
</div>
</div>
</div>
</div>
<script src="js/utilities.js"></script>
<script src="js/main.js"></script>
</body>
</html>