-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisit.html
102 lines (99 loc) · 5.06 KB
/
visit.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
<!Doctype html>
<html>
<head>
<title>Visit Us!</title>
<meta charset="UTF-8" />
<meta name="description" content="Location, opening hours and everything practical you need to know for a nice trip to our museum">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="styles.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ranchers&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="header-content">
<a href="index.html"><div class="logo">
<h1><span class="h1_color1">Community</span><span class="h1_color2">Science</span><span class="h1_color3">Museum</span></h1>
<img src="images/icon-1719742.svg" alt="An atom with black circles and orange center dot">
</div></a>
<nav>
<ul class="header_list">
<li><a href="explore.html">Explore</a></li>
<li><a href="exhibition_spaces.html">Exhibition Spaces</a></li>
<li><a href="special_events.html">Special Events And Exhibitions</a></li>
<li><a href="visit.html">Visit</a></li>
<li><a href="get_involved.html">Get Involved</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="main">
<h2 class="middle-h2">
Visit
</h2>
<section class="visit-grid">
<div class="purple-box-3-1">
<h4>Location</h4>
<p>
The museum is located at Nittedalsveien 376
</p>
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d7976.537009874155!2d11.060133128930254!3d60.01284874613844!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sno!2sno!4v1609269423133!5m2!1sno!2sno" width="500" height="400" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
<div class="purple-box-3-2">
<h4>Admission</h4>
<p>
The entrance is free for all.
<br>
There are guided tours of the museum that leave every hour. These tours are 70 NOK per person and include a handy printed guide of the museum.
<br>
If you would like to organise a guided tour for your group of 6 or more people, please contact us to arrange the tour.
</p>
<h4>Accessebility</h4>
<p>
The museum has wheelchair accessibility ramps.
It also has audio guides and braille display signs for the visually impaired.
</p>
<h4>Food and Drink</h4>
<p>
There is a café attached to the museum where you can get light lunches, soft drinks, coffee, snacks and more.
</p>
<h4>Shop</h4>
<p>
Our shop offers a range of memorabilia from the museum as well as great gifts and activity packs that allow you to continue to explore science even after you’ve left the museum.
</p>
</div>
<div class="purple-box-3-3">
<h4>Hours</h4>
<p>
Monday: Closed
<br>
Tuesday: 10:00 – 16:00
<br>
Wednesday: 10:00 – 16:00
<br>
Thursday: 10:00 – 16:00
<br>
Friday: 10:00 – 19:00
<br>
Saturday: 9:00 – 16:00
<br>
Sunday: 9:00 – 13:00
</p>
</div>
</section>
</div>
</main>
<div class="footer">
<footer>
<h1><span class="h1_color1">Community</span><span class="h1_color2">Science</span><span class="h1_color3">Museum</span></h1>
<div class="footer-info">
<p><span class=footer-text1>Adress:</span> Nittedalsveien 376 <span class=footer-text1>Phone:</span> 98439205 </p>
<p><span class=footer-text1>Webdesign:</span>Arne Audun Svela</p>
</div>
</footer>
</div>
</body>
</html>