forked from hardikmehta88999/Assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacadview2(22).html
More file actions
49 lines (49 loc) · 1.18 KB
/
acadview2(22).html
File metadata and controls
49 lines (49 loc) · 1.18 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">
<link href="style.css" rel="stylesheet"/>
<Title>Movies for everyone</Title>
</head>
<body>
<div id="wrapper">
<header>
<div id="page-banner">
<h1 class="title">Moviemania</h1>
<p>Movies for everyone</p>
<form id="search-movies">
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="search movies.." title="type a name" />
</form>
</div>
</header>
<div id="movie-list">
<h2 class="title">Movies to watch</h2>
<ul id="myUL">
<li>
<span class="name" >fight club</span>
<span class="delete">delete</span>
</li>
<li>
<span class="name" >Shawshank Redemption</span>
<span class="delete">delete</span>
</li>
<li>
<span class="name">secret life of walty mitty</span>
<span class="delete">delete</span>
</li>
<li>
<span class="name">dark knight</span>
<span class="delete">delete</span>
</li>
</ul>
</div>
<form id="add-movie">
<input type="checkbox" id="hide" onclick="showMe('movie-list', this)"/>
<label for="hide">hide the list</label>
<input type="text" placeholder="add a movie"/>
<button onclick="myFunction()">add</button>
</form>
</div>
<script src="java.js"></script>
</body>
</html>