-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (35 loc) · 1.45 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
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="a website the provides an easy and convenient way to search for movies">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<title>MovieHunt</title>
</head>
<body>
<header>
<h1>MovieHunt.</h1>
<input type="text" placeholder="Search for a movie." class="input">
<button class="search"><i class="fa-solid fa-magnifying-glass"></i></button>
</header>
<main>
<section class="info">
<h1>MovieHunt.</h1>
<p>Your Ultimate Ticket to Cinema Adventure!
Let MovieHunt be your guide as you embark on a thrilling quest through the vast world of cinema.
Discover, explore, and dive into the magic of movies.</p>
</section>
<section class="movies">
<p>Featured Movies</p>
<div class="carousel">
<!-- place holder images -->
</div>
</section>
</main>
</body>
</html>