forked from Technigo/project-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (28 loc) · 898 Bytes
/
index.html
File metadata and controls
35 lines (28 loc) · 898 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Project Library</title>
</head>
<body>
<div class="wrapper"></div>
<header>
<h1>Project Library</h1>
<select id="filterDropdown">
<option value="ALL" default>ALL</option>
<option value="Adventure">Adventure</option>
<option value="Dystopian">Dystopian</option>
<option value="Fantasy">Fantasy</option>
<option value="Fiction">Fiction</option>
<option value="Horror">Horror</option>
<option value="Mystery">Mystery</option>
<option value="Science Fiction">Science Fiction</option>
</select>
<button id="sortButton">Sort by title A-Z</button>
</header>
<div id="container"></div>
<script src="script.js"></script>
</body>
</html>