-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
75 lines (75 loc) · 3.43 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Darkest Dungeon Party Combination Search</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="assets/images/favicon.ico">
<link rel="stylesheet" href="assets/normalize.css">
<link rel="stylesheet" href="assets/main.css">
</head>
<body>
<h1>Named party combinations</h1>
<div class="filters">
<div class="filter one">
<select>
<option>Select</option>
<option>Abomination</option><option>Antiquarian</option><option>Arbalest</option>
<option>Bounty Hunter</option><option>Crusader</option><option>Flagellant</option>
<option>Grave Robber</option><option>Hellion</option><option>Highwayman</option>
<option>Houndmaster</option><option>Jester</option><option>Leper</option>
<option>Man-at-Arms</option><option>Occultist</option><option>Plague Doctor</option>
<option>Vestal</option>
</select>
</div>
<div class="filter two">
<select>
<option>Select</option>
<option>Abomination</option><option>Antiquarian</option><option>Arbalest</option>
<option>Bounty Hunter</option><option>Crusader</option><option>Flagellant</option>
<option>Grave Robber</option><option>Hellion</option><option>Highwayman</option>
<option>Houndmaster</option><option>Jester</option><option>Leper</option>
<option>Man-at-Arms</option><option>Occultist</option><option>Plague Doctor</option>
<option>Vestal</option>
</select>
</div>
<div class="filter three">
<select>
<option>Select</option>
<option>Abomination</option><option>Antiquarian</option><option>Arbalest</option>
<option>Bounty Hunter</option><option>Crusader</option><option>Flagellant</option>
<option>Grave Robber</option><option>Hellion</option><option>Highwayman</option>
<option>Houndmaster</option><option>Jester</option><option>Leper</option>
<option>Man-at-Arms</option><option>Occultist</option><option>Plague Doctor</option>
<option>Vestal</option>
</select>
</div>
<div class="filter four">
<select>
<option>Select</option>
<option>Abomination</option><option>Antiquarian</option><option>Arbalest</option>
<option>Bounty Hunter</option><option>Crusader</option><option>Flagellant</option>
<option>Grave Robber</option><option>Hellion</option><option>Highwayman</option>
<option>Houndmaster</option><option>Jester</option><option>Leper</option>
<option>Man-at-Arms</option><option>Occultist</option><option>Plague Doctor</option>
<option>Vestal</option>
</select>
</div>
<div class="filter">
<span class="results"></span>
</div>
</div>
<div class="table-container">
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="assets/main.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-108912389-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-108912389-1');
</script>
</body>
</html>