-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (58 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>REST API</title>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<i class="icon-female"></i>
<!-- site header -->
<header>
<h2>REST API for randomuser.me</h2>
<button id="show-popup-chart">Gender Chart</button>
<div class="search-box">
<input id="search" type="text" placeholder="First name or part of...">
</div>
</header>
<!-- user list -->
<div class="user-list">
<div class="title">
<div class="avatar"></div>
<div class="last">Last</div>
<div class="first">First</div>
<div class="username">Username</div>
<div class="phone">Phone</div>
<div class="location">Location</div>
<div class="expand"></div>
</div>
<!-- user content -->
<div class="content"></div>
</div>
<!-- popup chart -->
<div class="popup-chart" style="display: none">
<img class="close-icon" src="img/close-icon.png" alt="">
<h1>Gender users</h1>
<div class="chart"><canvas id="chart"></canvas></div>
</div>
<!-- gray overflow -->
<div id="overflow" style="display: none"></div>
<!-- footer -->
<footer>
<div class="footer">
For JS-Lab@Light-IT by Paul Malyarevich
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.js"></script>
<script src="js/chart.js"></script>
<script src="js/activity.js"></script>
<script src="js/user-list.js"></script>
<script src="js/search.js"></script>
</body>
</html>