Skip to content

Commit 546363e

Browse files
committed
Added Html
1 parent 0de6dae commit 546363e

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

Movie-Search-App/index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Movie Search App</title>
8+
9+
<!-- Custom CSS -->
10+
<link rel="stylesheet" href="./styles.css" />
11+
</head>
12+
<body>
13+
<header>
14+
<h3 class="logo">Movie Search App</h3>
15+
<form id="form">
16+
<input type="text" placeholder="Search" id="search" class="search" />
17+
</form>
18+
</header>
19+
20+
<main id="main"></main>
21+
<h1 hidden id="recommendations-header" style="text-align: center">
22+
Recommendations based on search results
23+
</h1>
24+
<div id="recommendations"></div>
25+
26+
<div class="footer">
27+
<h4>Designed & Developed with &#10084;&#65039; by Atif</h4>
28+
</div>
29+
30+
<!-- Custom Script -->
31+
<script src="./script.js"></script>
32+
</body>
33+
</html>

0 commit comments

Comments
 (0)