-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (33 loc) · 895 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="cookies.js"></script>
<script src="script.js"></script>
<script src="animation.js"></script>
</head>
<body>
<!--Uncomment the first form to test cookies-->
<!--
<form id="userNameForm" onsubmit="return cookieTest()">
<label for="name"></label>
<input type="text" id="name" />
<input type="submit" />
</form>
<Div onclick="animation()">Click here for Animation Test</div>
-->
<form id="movieSearchForm" onsubmit="return search()">
<label for="movie name"></label>
<input type="text" name="t" onkeyup="search()" placeholder="Enter a movie name"/>
<input type="submit" />
</form>
<div id="div1">
</div>
<div id="div2">
</div>
<div id="div3">
</div>
</body>
</html>