-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 936 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (26 loc) · 936 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
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MOVIE MENU</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
</head>
<body>
<nav>
<h2>MOVIE MENU</h2>
<p>Hello, welcome to our page. There are many movie options on our page.</p>
<h3><a href="sci-fi.html">Science Fiction</a></h3>
<h3><a href="horror.html">Horror</a></h3>
<h3><a href="action.html">Action</a></h3>
<h3><a href="thriller.html">Thriller</a></h3>
</nav>
<footer>
<p>Whatever you want to watch, IMDB, subject and photo of each movie are available.</p>
<h3 style="display: inline-block;">Enjoy Watching</h3>
<span class="material-icons">emoji_emotions</span>
</footer>
</body>
</html>