-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 2.42 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
56
57
58
59
60
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vår trädgård</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header id="site-header">
<label for="menu-checkbox"><img src="assets/menu.svg" alt=""></label>
<h1>Vår trädgård</h1>
<input type="checkbox" name="" id="menu-checkbox">
<nav>
<ul id="global-nav">
<li><a href="index.html">Hem</a></li>
<li><a href="aret.html">Året runt</a></li>
<li><a href="faglar.html">Fåglar</a></li>
<li><a href="insekter.html">Insekter</a></li>
<li><a href="andra-besokare.html">Andra besökare</a></li>
</ul>
</nav>
</header>
<section id="splash">
<video src="assets/liljor.mp4" autoplay muted loop></video>
<div class="overlay">
Våren är här!
</div>
</section>
<main>
<section>
<b>Lorem ipsum</b> dolor sit, amet consectetur adipisicing elit. Qui hic inventore dolorum provident culpa ipsa voluptate suscipit molestias. Accusamus laboriosam dolores molestiae vitae, officiis obcaecati repudiandae? Dolor ipsam quibusdam voluptatibus.
</section>
<section id="first-page-interactions">
<div class="column weather">
<h2>Vädret</h2>
<a class="weatherwidget-io" href="https://forecast7.com/sv/56d8814d81/vaxjo/" data-days="3" data-theme="clear">Växjö, Sweden</a>
<script>
!function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (!d.getElementById(id)) { js = d.createElement(s); js.id = id; js.src = 'https://weatherwidget.io/js/widget.min.js'; fjs.parentNode.insertBefore(js, fjs); } }(document, 'script', 'weatherwidget-io-js');
</script>
</div>
<div class="column observation">
<h2>Registrera observation</h2>
<form name="Observationer" method="POST" data-netlify="true">
<fieldset>
<legend>Registrera observation</legend>
<label for="">Art</label>
<input type="text" name="art" placeholder="En okänd art">
<label for="">Beskrivning</label><textarea name="beskrivning" cols="30" rows="10"></textarea>
<div class="actions">
<button type="submit">Skicka</button>
<button type="reset">Börja om</button>
</div>
</fieldset>
</form>
</div>
</section>
</main>
</body>
</html>