-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (40 loc) · 1.17 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
44
45
46
47
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie Search</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="#" class="active">Movie Search</a>
</div>
<div class="theme-toggle">
<label class="switch">
<input type="checkbox" id="themeToggle">
<span class="slider round"></span>
</label>
</div>
<div class="user-profile">
<a href="#" class="initial">KC</a> <!-- Replace JD with user's initials -->
</div>
</nav>
</header>
<main>
<section class="hero">
<h1>Welcome to Movie Search</h1>
<p>Find and bookmark your favorite movies</p>
</section>
<!-- Other sections or components of the landing page -->
</main>
<footer>
<!-- Add your footer content here -->
</footer>
<script src="script.js"></script>
</body>
</html>
<!-- and when i click on one of the movies in result take me to that movies page where information of that movie Id is displayed as given in tmdb api. -->