-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (64 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Random Person</title>
<!-- font-awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<!-- css -->
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="block bcg-black"></div>
<div class="block">
<div class="container">
<img
src="https://randomuser.me/api/portraits/men/75.jpg"
alt="random user"
class="user-img"
/>
<p class="user-title">My name is</p>
<p class="user-value">John Smith</p>
<div class="values-list">
<!-- Single Icon -->
<button class="icon active" data-label="name">
<span class="far fa-user"></span>
</button>
<!-- End of Single Icon -->
<!-- Single Icon -->
<button class="icon" data-label="email">
<span class="far fa-envelope-open"></span>
</button>
<!-- End of Single Icon -->
<!-- Single Icon -->
<button class="icon" data-label="age">
<span class="far fa-calendar-times"></span>
</button>
<!-- End of Single Icon -->
<!-- Single Icon -->
<button class="icon" data-label="street">
<span class="far fa-map"></span>
</button>
<!-- End of Single Icon -->
<!-- Single Icon -->
<button class="icon" data-label="phone">
<span class="fas fa-phone"></span>
</button>
<!-- End of Single Icon -->
<!-- Single Icon -->
<button class="icon" data-label="password">
<span class="fas fa-user-lock"></span>
</button>
<!-- End of Single Icon -->
</div>
<button type="button" class="btn">random user</button>
</div>
</div>
<!-- JavaScript -->
<script type="module" src="./app.js"></script>
</body>
</html>