-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 816 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href='style.css' />
<script src="src/index.js"></script>
<title>KidsMDb</title>
</head>
<body>
<h2>Movies Database</h2>
<ul>
<li>
<h3>The Brave Little Toaster</h3>
<div>ID: 1</div>
</li>
<li>
<h3>The Princess Bride</h3>
<div>ID: 2</div>
</li>
<li>
<h3>Spirited Away</h3>
<div>ID: 3</div>
</li>
</ul>
<section>
<form>
<label for="searchByID">Search By ID</label>
<input id="searchByID" type="text" placeholder="Enter ID here"/>
<input type="submit" />
</form>
</section>
<section id="movieDetails">
<h4>Title</h4>
<p>Summary</p>
</section>
</body>
</html>