-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (52 loc) · 1.73 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/5.11.2/css/all.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.css"
/>
<link href="/your-path-to-uicons/css/uicons-[your-style].css" />
<link rel="icon" href="https://cdn-icons.flaticon.com/png/512/408/premium/408477.png?token=exp=1644323748~hmac=c30c06817c204852866d075526a52be9" >
<link rel="stylesheet" href="index.css" />
</head>
<title>Movie Fight</title>
<body>
<section class="hero is-primary is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">
Movie Fight
<span class="icon">
<i class="fas fa-film"></i>
</span>
</h1>
</div>
</div>
</section>
<div class="container">
<div class="container">
<div class="columns">
<div class="column">
<div id="left-autocomplete"></div>
<div id="left-summary"></div>
</div>
<div class="column">
<div id="right-autocomplete"></div>
<div id="right-summary"></div>
</div>
</div>
<div class="column is-half notification is-primary tutorial">
<h1 class="title">Search for a Movie on both Sides</h1>
<p class="subtitle">We will tell you which is best</p>
</div>
</div>
<script src="./assets/utils.js"></script>
<script src="./assets/autocomplete.js"></script>
<script src="index.js"></script>
</body>
</html>