-
Notifications
You must be signed in to change notification settings - Fork 2
/
anketa.html
45 lines (39 loc) · 1.36 KB
/
anketa.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="cz">
<head>
<title>Anketa</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="mystyle.css?version=1">
<script src="script.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LTEDR7CNPD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-LTEDR7CNPD');
</script>
</head>
<header>
<h1>Anketa</h1>
<p class="subheading">Anketa jaké pivo koupit příště.</p>
<nav>
<a class ="navitem" href="index.html">Úvodní stránka</a>
<a class ="navitem" href="krygl_historie.html">Historie držitelů zlatého krýglu</a>
<a class ="navitem" href="rumlistek.html">Rumový lístek</a>
<a class ="navitem" href="morseovka.html">Morseovka</a>
</nav>
<figure>
<img class ="logo" src="logo.png">
</figure>
</header>
<body>
<section>
<p>Anketa zatím není naprogramovaná. Oceníme, když se do toho někdo pustí.</p>
</section>
</body>
<footer>
<h2>Kontakt</h2>
<p>Veškeré připomínky pište Viktorovi, případně můžete posílat návrhy přes <a href="https://github.com/matfyzak/hospoda">GitHub</a>.</p>
</footer>
</html>