-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·40 lines (30 loc) · 1.45 KB
/
index.html
File metadata and controls
executable file
·40 lines (30 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Projects</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/tabletop.js/1.5.2/tabletop.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="main.js"></script>
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<form id="filters">
<input type="checkbox" id="arts" name="filter" value="Arts" checked>
<label for="arts">Arts</label>
<input type="checkbox" id="humanities" name="filter" value="Humanities" checked>
<label for="humanities">Humanities</label>
<input type="checkbox" id="sciences" name="filter" value="Sciences" checked>
<label for="sciences">Sciences</label>
<input type="checkbox" id="social" name="filter" value="Social Sciences" checked>
<label for="social">Social Sciences</label>
<input type="checkbox" id="phc" name="filter" value="Public Humanities Collaborative" checked>
<label for="phc">Public Humanities Collaborative</label>
</form>
<table id="results" width="100%">
</table>
</body>
</html>