-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (40 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vai chover?</title>
<meta name="description" content="Coñece se vai chover nas próximas horas na túa localización" >
<link rel="apple-touch-icon" sizes="180x180" href="/share/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/share/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/share/favicon-16x16.png">
<link rel="manifest" href="/share/site.webmanifest">
<link rel="mask-icon" href="/share/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/share/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/share/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="/css/styles.css" />
</head>
<body>
<header><img class="logo" src="/img/logo.svg" alt="Vai chover?" /></header>
<section class="panel permission hidden">
<p>Para poder dicirche se vai chover ou non necesito saber a túa localización</p>
<button>Vamos!</button>
</section>
<section class="panel positive hidden">
<h1>Si</h1>
<p></p>
</section>
<section class="panel negative hidden">
<h1>Non</h1>
<p></p>
</section>
<section class="panel error hidden">
<h1>🙈</h1>
<p>Ooops, parece que houbo un error</p>
<button><a href="/">Proba de novo</a></button>
</section>
<script type="module" src="/js/main.js"></script>
</body>
</html>