-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.3 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
<!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" />
<title>Working with Objects</title>
<link rel="stylesheet" href="assets/styles/app.css" />
<!--<script src="assets/scripts/objects.js" defer></script>-->
<script src="assets/scripts/objects1.js" defer></script>
</head>
<body>
<section id="user-input" class="card">
<div class="control">
<label for="title">Favorite Movie</label>
<input type="text" id="title" />
</div>
<div class="inline-controls">
<div class="control">
<label for="extra-name">Extra Information (Name)</label>
<input type="text" id="extra-name" />
</div>
<div class="control">
<label for="extra-value">Extra Information (Value)</label>
<input type="text" id="extra-value" />
</div>
</div>
<button id="add-movie-btn">Add Movie</button>
</section>
<section id="filter" class="card">
<label for="filter-title">Filter by Title</label>
<input type="text" id="filter-title" />
<button id="search-btn">Search</button>
</section>
<ul id="movie-list" class="card"></ul>
</body>
</html>