-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 967 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<script src="static/script.js"></script>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sortable</title>
<link rel="stylesheet" href="static/style.css" />
<link rel="icon" type="image/jpg" href="static/images/favicon.jpg">
</head>
<body>
<div id="controls" class="controls">
<select id="size-options">
<option value="10">10</option>
<option selected="selected" value="20">20</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="563">All</option>
</select>
<button id="prevButton">Previous</button>
<button id="nextButton">Next</button>
<input id="search-input" type="text">
<select id="search-select"></select>
</div>
<br>
</body>
</html>