-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (36 loc) · 1.61 KB
/
index.html
File metadata and controls
49 lines (36 loc) · 1.61 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="./assets/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link rel="icon" href="./assets/images/cursor-08.png">
<title>Will It Stream?</title>
</head>
<body>
<section class="section">
<div class="container">
<div class="animate__animated animate__backInDown animate__slow-4s">
<img src="./assets/images/sign-04.png" alt="Will It Stream sign" id="sign">
</div>
<div class="animate__animated animate__backInDown animate__slow-4s">
<form id="search-form">
<input id="inputBox" type="text" placeholder="Search a movie or show title here:">
<button id="searchBtn" class="button" type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
<div class="movie-screen">
</div>
</div>
<footer>
<img src="./assets/images/seats-08.png">
</footer>
</section>
<script src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script src="assets/script.js"></script>
</body>
</html>