-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.0/axios.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.css"
/>
<link rel="stylesheet" href="./stylesheet.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section class="hero is-bold">
<div class="hero-body">
<div class="hero-image">
<div><img src="https://jawaragordon.com/filmfighter/img/player1.svg"></div>
<div><img src="https://jawaragordon.com/filmfighter/img/filmfighterturbologoshadow.svg"></div>
<div><img src="https://jawaragordon.com/filmfighter/img/player2.svg"></div>
</div>
</div>
</section>
<div class="search">
<div class="columns">
<div class="column">
<div id="left-autocomplete"></div>
<div id="left-summary"><h3>Player 1</h3></div>
</div>
<div class="column">
<div id="right-autocomplete"></div>
<div id="right-summary"><h3>Player 2</h3></div>
</div>
</div>
<div class="column is-half notification tutorial">
<h1 class="title">Search for a Film</h1>
<p class="subtitle"><i class="fa-solid fa-hand-fist"></i>  Only one can win!  <i class="fa-solid fa-hand-fist"></i></p>
</div>
</div>
<div class="map-div">
<img class="map" src="https://jawaragordon.com/filmfighter/img/map.svg">
</div>
</div>
<script src="utils.js"></script>
<script src="autocomplete.js"></script>
<script src="index.js"></script>
</body>
</html>