-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkontakta_oss.html
57 lines (51 loc) · 1.42 KB
/
kontakta_oss.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
img {
width: 1vh;
height: 1vh;
}
</style>
<script>
function toggleMenu() {
alert(1)
}
</script>
<title>Kalmar Brasved</title>
</head>
<body>
<div id="desktop_content">
<header>
<img class="header_item" src="brasved.svg" alt="KB">
<a class="header_item" href="index.html">Hem</a>
<a class="header_item" href="priser.html">Priser</a>
<a class="header_item" id="thispage" href="#">Kontakta Oss</a>
<a class="header_item" href="om_oss.html">Om oss</a>
</header>
<div id="content">
<h1 class="content_item" id="lineone">Kalmar </h1>
<h1 class="content_item" id="linetwo">Brasved</h1>
<div id="content_box">
</div>
</div>
</div>
<div id="mobile_content">
<header>
<img class="header_item" src="brasved.svg" alt="KB">
<div class="name_holder">
<h1 id="mobile_lineone">Kalmar</h1>
<h1 id="mobile_linetwo">Brasved</h1>
</div>
</header>
<div id="mobile_spacer"></div>
<div id="content_mobile"></div>
<a href="javascript:void(0);" onclick="toggleMenu()">
<img class="hamburger" src="menu.svg" alt="menu">
</a>
</div>
<link rel="stylesheet" href="main.css">
</body>
</html>