-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (36 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/index.css">
<title>NetflixnChill</title>
</head>
<body>
<div class="content">
<header>
<h1>Netflix 'n Chill</h1>
<br>
<div class="loaders">
<button class="action">Click me for movie!</button>
<button class="searchshow">Click me for drinks!</button>
</div>
</header>
<div class="backgroundPic"></div>
<!-- <form class="searchshow" role="searchshow">
<label for="Netflix Search"></label>
<input class="drinkReq" type="text" name="name" placeholder="Who is this drink for?">
<br>
<input class="loadReq" type="submit" name="name" value="Search">
</form> -->
<div class="searchContent">
<div class="netflixContent"></div>
<div class="chill"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="src/index.js"></script>
</body>
</html>