-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (80 loc) · 2.35 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
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="icon"
href="https://cdn.icon-icons.com/icons2/37/PNG/512/TV_4089.png"
/>
<title>CDB</title>
</head>
<body>
<div id="hi"></div>
<div id="searchBar" class="searchBar">
<div id="search">
<h2 id="info">search a show to see its' crossovers</h2>
<button id="legend">
<i class="fa fa-book"></i>
</button>
<button id="random">
<i class="fa fa-random"></i>
</button>
<input
type="text"
id="showName1"
list="showsList"
placeholder="Type a show's name"
autocomplete="off"
/>
<datalist id="showsList"> </datalist>
<input
type="text"
id="showName2"
list="showsList"
placeholder="Type another show's name"
style="display: none;"
autocomplete="off"
/>
<datalist id="showsList"> </datalist>
<button id="prevSearch">
<i class="fa fa-angle-double-left"></i>
</button>
<button id="searchShow">
<i class="fa fa-search"></i>
</button>
<button id="nextSearch">
<i class="fa fa-angle-double-right"></i>
</button>
</div>
</div>
<h3 id="fastDits"></h3>
<div id="crossovers" class="crossovers"></div>
<div id="myModal2" class="modal">
<div id="guide" class="guide">
<span id="close2" class="close">×</span>
<h1 id="guidelines">
<ul>
<li class="type0">core program</li>
<li class="type1">spin off</li>
<li class="type2">crossover event</li>
<li class="type3">character apperence</li>
<li class="type4">same brand/cameo</li>
<li class="type5">show within a show</li>
<li class="type6">alternative cameo</li>
<li class="type7">* infinite earths canon</li>
</ul>
</h1>
</div>
</div>
<div id="myModal" class="modal">
<div id="show" class="show">
<span id="close" class="close">×</span>
</div>
</div>
<script src="app.js"></script>
</body>
</html>