-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 938 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 938 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="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codo a Codo Movie Database</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/291bef186b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="stylesheet" href="./assets/css/home-page.css">
</head>
<body>
<div class="navbar"></div>
<main class="container">
<h1>Estrenos</h1>
<div class="movies-container" id="movieContainer"></div>
</main>
<footer id="footer"></footer>
<script src="./assets/scripts/index.js"></script>
<script src="./assets/scripts/home.js"></script>
</body>
</html>