-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
36 lines (33 loc) · 1.06 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles/default.css">
<link rel="stylesheet" href="styles/carousel.css">
<link rel="stylesheet" href="styles/homenav.css">
<link rel="stylesheet" href="styles/buttons.css">
<link rel="stylesheet" href="styles/search.css">
</head>
<body>
<header>
<div id="left-side">
<nav>
<a href="index.html">Home</a>
<a href="profile.html">Profile</a>
<a href="about.html">About</a>
<a href="search.html">Search</a>
</nav>
</div>
</header>
<main>
<h1>Movie Search</h1>
<label for="searchInput">Search:</label>
<input type="search" id="searchInput" placeholder="Search" autocomplete="off">
<ul id="movieList"></ul>
<div id="movieDetails"></div>
</main>
<script src="scripts/search.js"></script>
</body>
</html>