1 | <!DOCTYPE html> |
2 | <html lang="es"> |
3 | |
4 | <head> |
5 | |
6 | <meta charset="UTF-8"> |
7 | |
8 | <title>PWA Básica</title> |
9 | |
10 | |
11 | <meta name="description" content="Ejemplo de PWA"> |
12 | |
13 | <script src="js/registraServiceWorker.js"></script> |
14 | |
15 | <meta name="viewport" content="width=device-width"> |
16 | |
17 | |
18 | <meta name="theme-color" content="#cbc693"> |
19 | |
20 | |
21 | |
22 | <link rel="icon" sizes="32x32" href="favicon.ico"> |
23 | |
24 | |
25 | |
26 | <link rel="manifest" href="site.webmanifest"> |
27 | |
28 | <link rel="stylesheet" href="css/estilos.css"> |
29 | |
30 | </head> |
31 | |
32 | <body> |
33 | |
34 | <h1>PWA Básica</h1> |
35 | |
36 | <p>Hola mundo.</p> |
37 | |
38 | </body> |
39 | |
40 | </html> |