-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
46 lines (43 loc) · 1.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test task</title>
<link rel="stylesheet" href="/css/main.css">
<script src="./js/main.js" type="module" defer></script>
</head>
<body>
<div class="container">
<header class="header">
<span class="header__title">#</span>
<span class="header__title">Avatar</span>
<span class="header__title">Full name</span>
</header>
<!-- <span>Sort by</span> -->
<select name="sort" class="sort_item">
<option value="">Sort by</option>
<option value="A-Z">A-Z</option>
<option value="reverse">From the end</option>
</select>
<ul class="list-group">
</ul>
</div>
<div class="modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">User info</h5>
<button type="button" class="close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body"></div>
<div class="modal-footer">
<button type="button" class="modal-close" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</body>
</html>