forked from marianaferr0ni/pdm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (34 loc) · 1.3 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="description" content="exemplo de fallback">
<title>Minha primeira PWA fallback</title>
<link rel="apple-touch-icon" href="images/pwa-icon-256.png" />
<link rel="stylesheet" href="css/style.css" />
<!--viewport para designers responsivos (mobo), content é a configuração-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="white" />
<link rel="manifest" href="manifest.json" />
<link rel="icon" href="favicon.ico">
<script type="module" src="js/main.js"></script>
<script type="module" src="js/db.js"></script>
</head>
<body class="fullscreen">
<div class="container">
<h1 class="title">Minha primeira PWA</h1>
<div class="form" >
<input type="text" id="inputnome" placeholder="Nome"/>
</div>
<div class="form" >
<input type="text" id="inputidade" placeholder="Idade"/>
</div> <div class="form" >
<button id="btnSalvar">Salvar</button>
<button id="btnListar">Listar</button>
</div>
<div class="flexCard">
<output></output>
</div>
</div>
</body>
</html>