sss
Tue Nov 28 2023 09:05:55 GMT+0000 (Coordinated Universal Time)
Saved by
@sfasa
1
html
2
<!DOCTYPE html>
3
<html>
4
<head>
5
<title>MOVIES WORLD</title>
6
<link rel="stylesheet" href="styles.css">
7
</head>
8
<body>
9
<header>
10
<h1>Welcome to MOVIES WORLD</h1>
11
</header>
12
13
<nav>
14
<ul>
15
<li><a href="#">Home</a></li>
16
<li><a href="#">Movies</a></li>
17
<li><a href="#">Genres</a></li>
18
<li><a href="#">About</a></li>
19
</ul>
20
</nav>
21
22
<main>
23
<section>
24
<h2>Featured Movies</h2>
25
<!-- Add your movie content here -->
26
</section>
27
28
<section>
29
<h2>Latest Releases</h2>
30
<!-- Add your movie content here -->
31
</section>
32
</main>
33
34
<footer>
35
<p>© 2023 MOVIES WORLD. All rights reserved.</p>
36
</footer>
37
</body>
38
</html>
content_copyCOPY
Comments