forked from DhruvJohri/Netflix-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmovies.html
More file actions
29 lines (27 loc) · 656 Bytes
/
Copy pathmovies.html
File metadata and controls
29 lines (27 loc) · 656 Bytes
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
<!-- movies.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Netflix Clone - Movies</title>
<link rel="stylesheet" href="movies.css">
</head>
<body class="movies-page">
<header>
<a href="index.html" class="logo">NETFLIX</a>
<nav>
<a href="index.html">Home</a>
<a href="movies.html" class="active">Movies</a>
<a href="#">TV Shows</a>
<a href="#">My List</a>
</nav>
</header>
<main>
<h1>All Movies</h1>
<div class="movies-grid" id="moviesContainer">
<!-- JS will insert movie cards here -->
</div>
</main>
<script src="movies.js"></script>
</body>
</html>