-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.41 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
<!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 rel="stylesheet" href="style.css" />
</head>
<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="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 for you!</p>
</div>
</div>
<script src="utils.js"></script>
<script src="autocomplete.js"></script>
<script src="index.js"></script>
</body>
</html>