-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (65 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="./style.css">
<link href="https://fonts.googleapis.com/css?family=Cabin:400,700" rel="stylesheet">
<title>BSA | API task | Zoriana Chyzhovska</title>
<link href="./img/icon.ico" rel="icon" type="image/x-icon" />
</head>
<body>
<div class="wrapper">
<div class="header-container">
<div class="left_side">
<div class="header-logo">
<a href="#"><img src="./img/logo.png" alt="logo"></a>
</div>
</div>
<div class="right_side">
<div class="sort-search">
<div class="sort">
<span>Sort by date:</span>
<div id="sort_by_date">
<select data-sort="date" class="input_field" id="sort_by_date">
<option disabled selected value> </option>
<option value="true">Newest first</option>
<option value="false">Oldest first</option>
</select>
<button class="sort_button" type="button">
🔍
</button>
</div>
</div>
<div class="sort">
<span>Sort by episodes:</span>
<div id="sort_by_episodes">
<select data-sort="episodes" class="input_field" id="sort_by_episodes">
<option disabled selected value> </option>
<option value="true" >The least number</option>
<option value="false">The largest number</option>
</select>
<button class="sort_button" type="button">
🔍
</button>
</div>
</div>
<div class="search">
<span>Instant search:</span>
<div>
<input type="text" class="input_field" id="instant-search" placeholder="Search...">
</div>
</div>
</div>
</div>
</div>
<div class="main-title">
<span>Characters</span>
</div>
<button onclick="topFunction()" id="topBtn" title="Go to top">Top</button>
<div class="characters">
</div>
</div>
<script src="./js/index.js"></script>
</body>
</html>