-
-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 647 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Movie App</title>
</head>
<body>
<header>
<h1>Should I watch it?</h1>
<form id="form">
<input type="text" placeholder="Search" id="search" class="search" />
</form>
</header>
<main id="main"></main>
<footer class="footer">
<p>
This project uses the TMDb API but is not endorsed or certified by TMDb.
</p>
</footer>
<script src="script.js"></script>
</body>
</html>