-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (33 loc) · 917 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
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Lost Level List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header><h1>LLL</h1></header>
<div id="content">
<div id="navigation">
<button>About</button>
<button>Search</button>
<button>Button 3</button>
</div>
<div id="left"></div>
<div id="right"></div>
<div id="middle">
<div id="searchbar">
<input type="text" id="input" placeholder="Input">
<select id="filter">
<option value="levelName">Level Name</option>
<option value="levelId">Level ID</option>
</select>
<button onclick="search()">Search</button>
</div>
<p id="results"></p>
<div id="list"></div>
</div>
</div>
<footer>Footer</footer>
</body>
<script src="index.js"></script>
</html>