-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (54 loc) · 1.81 KB
/
index.html
File metadata and controls
55 lines (54 loc) · 1.81 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
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet"/>
<title>Working with JavaScript Dom</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" placeholder="Search Movies">
</form>
</div>
<!-- </header>-->
<div id="movie-list">
<h2 class="title">Movies to watch</h2>
<ul id="list">
<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">Dilwale</span>
<span class="delete">delete</span>
</li>
<li>
<span class="name">Dark Knight</span>
<span class="delete">delete</span>
</li>
<li>
<span class="name">Dark Knight1</span>
<span class="delete">delete</span>
</li>
</ul>
</div>
<form id="add-movie">
<input type="checkbox" id="hide">
<label for="hide">Hide the List</label>
<input type="text" placeholder="Add a movie" id="candidate">
<!---- <input type="button" value="Add" onclick="addItem()">-->
<button>Add</button>
</form>
</div>
<script src="movieapp.js"></script>
</body>
</html>