-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (49 loc) · 1.75 KB
/
index.html
File metadata and controls
57 lines (49 loc) · 1.75 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!-- This website is made by Nitesh Kumar -->
<!DOCTYPE html>
<html lang="en">
<head>
<!--Meta Data-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Title-->
<title>IMDB Clone Project</title>
<!--Linking CSS file for styling-->
<link rel="stylesheet" type="text/css" href="style.css" />
<!--Google Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap" rel="stylesheet">
<!--Font Awesome Icons-->
<script src="https://kit.fontawesome.com/d5635d350d.js" crossorigin="anonymous"></script>
</head>
<body>
<!--Header Bar-->
<div class="header">
<div class="header-container">
<div>
<h1>Search your movies</h1>
</div>
<div class="header-link">
<span><a href="favorite.html">Favorites</a></span>
</div>
</div>
<div class="search-box">
<input type="text" placeholder="Search your movies here" class="search-bar" id="Input">
<button type="submit"><i class="fa-solid fa-magnifying-glass"></i></button>
</div>
</div>
<!--Main Content Container-->
<div class="main">
<!-- Search Items Display Section -->
<div class="fav-container">
<!-- Items are displayed here -->
</div>
<!--Watermark Area-->
<div class="start-exploring">
<i class="fa-solid fa-film fa-6x"></i><br>
<span>IMDB Mini-Clone!</span>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>