-
Notifications
You must be signed in to change notification settings - Fork 0
/
page3.html
39 lines (39 loc) · 1.39 KB
/
page3.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>PELICULAS FAVORITAS</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="styles.css" />
<script type="module" src="script.js"></script>
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/page2.html">Comidas favoritas</a>
<a href="/page3.html" aria-current="page">Películas favoritas</a>
</nav>
<main>
<h1>PELICULAS FAVORITAS</h1>
<p>Quizá esta es la parte donde más se notan más mis gustos por la tecnología y la fantasia. No tiene un orden en especial.</p>
<ul>
<li>Star Wars trilogía original</li>
<li>Star Wars Precuelas</li>
<li>Hitch hickers guide to the galaxy</li>
<li>Atlantis el imperio perdido</li>
<li>El planeta del tesoro</li>
<li>Iron man el hombre de hierro</li>
<li>Trilogía el señor de los anillos</li>
<li>Harry potter el prisionero de Azkaban</li>
<li>¿Quién engañó a Roger Rabbit?</li>
<li>Space jam</li>
<li>Mulán</li>
<li>Ratatouille</li>
<li>Wall-e</li>
<li>About time</li>
<li>Alicia a través del cristal</li>
<li>Alphaville</li>
</ul>
</main>
</body>
</html>