-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 770 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 770 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevelopFlix</title>
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<h1>DevelopFlix</h1>
<section class="genero-container">
<h2>Películas de Acción</h2>
<div id="genero-28" class="genero"></div>
</section>
<section class="genero-container">
<h2>Películas de Thriller</h2>
<div id="genero-53" class="genero"></div>
</section>
<section class="genero-container">
<h2>Películas de Aventura</h2>
<div id="genero-12" class="genero"></div>
</section>
<script type="module" src="./js/script.js"></script>
</body>
</html>