-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (105 loc) · 4.29 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visit Køge</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<!-- navigation bar start-->
<a href="https://oplevkoege.dk/"><img src="./pics/logo.png" alt="Logo" width="100px" class="logo"></a>
<nav class="navbar">
<span class="open-slide">
<a href="#" onclick="openSlideMenu()">
<img class="find" src="./pics/find.png" alt="find" width="40px" >
<svg width="30" height="30">
<path d="M0,5 30,5" stroke="#00BF6F" stroke-width="2"/>
<path d="M0,14 30,14" stroke="#00BF6F" stroke-width="2"/>
<path d="M0,23 30,23" stroke="#00BF6F" stroke-width="2"/>
</svg>
</a>
</span>
<ul class="navbar-nav">
<li> <a class="active" href="#">PLAN YOUR TRIP</a></li>
<li><a href="#">TRANSPORT</a></li>
<li><a href="#">ACCOMODATION</a></li>
<li><a href="#">HISTORY</a></li>
<li><a href="#">SHOPPING</a></li>
<li><a href="#">FOOD AND DRINKS</a></li>
<li><a href="#">ACTIVITIES</a></li>
</ul>
</nav>
<section id="side-menu" class="side-nav">
<a href="#" class="btn-close" onclick="closeSlideMenu()">×</a>
<a href="#">ACTIVITIES</a>
<a href="#">FOOD AND DRINKS</a>
<a href="#">SHOPPING</a>
<a href="#">HISTORY</a>
<a href="#">ACCOMODATION</a>
<a href="#">TRANSPORT</a>
<a href="#" class="active">PLAN YOUR TRIP</a>
<a href="#" class="buttoncenter"><button class="buttonslide">WATCH A MOVIE!</button></a>
</section>
<!-- navigation bar end-->
<!-- script for opening side menu start-->
<script>
function openSlideMenu(){
document.getElementById('side-menu').style.width = '100%';
document.getElementById('main').style.marginLeft = '0px';
}
function closeSlideMenu(){
document.getElementById('side-menu').style.width = '0';
document.getElementById('main').style.marginLeft = '0';
}
</script>
<!-- script for opening side menu end-->
<!-- content DEsktop start-->
<section class="greencontent">
<p class="desktopwhite">Want to see the locations of all of the beautiful places in Køge?
Plan your trip here and view the most important information all in one place!
</p>
</section>
<section class="secondarybuttons">
<a href="#" class="secondarybuttonfix1">Activities</a>
<a href="#" class="secondarybuttonfix">Attractions</a>
<a href="#" class="secondarybuttonfix">Food & drinks</a>
<a href="#" class="secondarybuttonfix">Events</a>
<a href="#" class="secondarybuttonfix">Accomodation</a>
<a href="#" class="secondarybuttonfix">Transport</a>
<a href="#" class="secondarybuttonfix">Services</a>
</section>
<div class="mintgreenbox">
<div class="whitebox"></div>
<img class="glass" src="./pics/glass.png" width="30px" alt="glass">
<p class="anchor3">Cafes</p>
<p class="anchor3">Restaurants</p>
<p class="anchor3">Bars and clubs</p>
</div>
<section class="">
<img src="./pics/nearme.png" class="nearme" alt="marker">
<div class="nearmetext">
<p>Show what is near me</p>
</div>
</section>
<!-- content desktop end-->
<section class="scrollmenu">
<button class="buttonlist">Activities</button>
<button class="buttonlist">Attractions</button>
<button class="buttonlist">Food and drinks</button>
<button class="buttonlist">Events</button>
<button class="buttonlist">Accomodation</button>
<button class="buttonlist">Transport</button>
<button class="buttonlist">Services</button>
</section>
<script src="js.js"></script>
<div id="map"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAHcm9ruvl4ZIL277Rlhlta_NitI_FNj9o&map_ids=86ad4126f5ea124b&callback=initMap"> </script>
<br>
<!-- <button onclick="openPinpointInfo0()" id="button1">click option 1</button>
<button onclick="openPinpointInfo1()" id="button2">click option 2</button>
<button onclick="openPinpointInfo2()" id="button3">click option 3</button>
-->
</body>
</html>