-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.02 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Películas</title>
<link rel="stylesheet" href="estilos.css">
<link rel="manifest" href="/public/manifest.json">
</head>
<body>
<div class="container">
<h1>Busca aquí tu película</h1>
<div class="search-container">
<input type="text" id="search-input" placeholder="Ingrese la película que busca">
<button id="search-button">Buscar</button>
</div>
<div id="results-container"></div>
<button id="show-favorites-button">Ver Favoritos</button>
<div id="favorites-container"></div>
</div>
<div id="modal" class="modal">
<div class="modal-content">
<span class="close-button">×</span>
<div id="modal-movie-info"></div>
</div>
</div>
<script src="funcion.js"></script>
<script src="service-worker-register.js"></script>
</body>
</html>