-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.0/axios.min.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Bebas+Neue|Bitter&display=swap"
rel="stylesheet"
/>
<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 Compare
<span class="icon">
<i class="fas fa-ticket-alt"></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
id="tutorial"
class="column is-half notification is-primary tutorial"
>
<h1 class="title">Search for 2 movies to get started.</h1>
<p class="sub">
We will compare their awards, ratings, box office gross,
etc.
</p>
</div>
</div>
<script type="text/javascript" src="./scripts/utils.js"></script>
<script type="text/javascript" src="./scripts/app.js"></script>
</body>
</html>