-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisit.html
More file actions
125 lines (125 loc) · 5.91 KB
/
visit.html
File metadata and controls
125 lines (125 loc) · 5.91 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!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">
<menta name="description" content="Visit the Nordics' largest Community science museum for children, teenagers and adults and see
visitor information.">
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/b318972c4d.js" crossorigin="anonymous"></script>
<title>Community Science Museum | Visit community science museum</title>
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<header>
<div class="header-container">
<label for="menu-checkbox" class="hamburger-icon"><i class="fas fa-bars"></i></label>
<input type="checkbox" id="menu-checkbox">
<a href="index.html" class="logo">Community Science Museum</a>
<div class="nav-bottom">
<nav>
<ul class="nav-ul">
<li><a href="index.html">Home</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="exhibition.html">Exhibition</a></li>
<li><a href="explore.html">Explore</a></li>
<li><a href="visit.html" class="active">Visit</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<input type="text" placeholder="Search here..." class="search">
<a href="contact.html" class="cta_nav">Tickets</a>
</div>
</div>
</header>
<main>
<h1 class="visit-heading">Visit community science museum</h1>
<hr class="line-visit-heading">
<section>
<div class="visit-container">
<div class="visit-info">
<h2><strong>Hours</strong></h2>
<p>Monday: <strong class="closed">Closed</strong></p>
<P>Tuesday: 10:00-16:00</p>
<P>Wednesday: 10:00-16:00</p>
<P>Thursday: 10:00-16:00</p>
<P>Friday: 10:00-19:00</p>
<P>Saturday: 9:00-16:00</p>
<P>Sunday: 9:00-13:00</p>
<h2><strong>Accessibility</strong></h2>
<p>The museum has wheelchair accessibility ramps. It also has audio guides and braille display signs for
the visually impaired.</p>
<h2><strong>Location</strong></h2>
<p>The museum is located at 633 Washington George WTX 0598.</p>
<h2><strong>Admission</strong></h2>
<p>The entrance is free for all. 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. 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>
</div>
<figure class="visit-info">
<img class="visit_image" src="images/contact-us-museum.jpg" alt="A long corridor inside a beautiful museum. Where at the end there is an
arched door">
</figure>
</div>
<hr class="line-visit">
</section>
<section>
<div class="visit-food-container">
<div class="visit-food-info">
<h2><strong>Food and drink</strong></h2>
<p>There is a café attached to the museum where you can get light lunches, soft drinks, coffee, snacks and more.</p>
<p>We have food for everyone. We also have meat-free food and allergy-friendly food on our menus. We also have a
variety of fresh smoothies.</p>
<p>Enjoy a cup of coffee together with freshly baked baguettes in our beautiful cafe. Here the whole family can enjoy something to eat after
a long day at the museum.</p>
<h2><strong>Shop</strong></h2>
<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>
<p>We also have lots of great gifts for children and adults. Bring the whole family and explore our store.</p>
<p>If you join our customer club, you get 20% off an item.With our customer club, you also receive lots
of other great discounts, such as in our cafe, on our guided tours and much more. You will also be sent
an overview of activities and when upcoming events are.</p>
</div>
<figure class="visit-food-info">
<img class="visit_image" src="images/visit-cafe.jpg" alt="Cafe with table and chairs and a large window in the
background. A green plant in the foreground of the picture.">
</section>
<div class="cta-item-visit">
<a href="index.html" class="cta-back">Back</a>
<a href="contact.html" class="cta-tickets">Buy tickets</a>
</div>
</main>
<footer>
<div class="footer-container">
<div class="help">
<h3 class="footer-heading">Help</h3>
<ul>
<li><a href="contact.html">Contact</a></li>
<li>Accessibility</li>
<li>Get involved</li>
</ul>
</div>
<div class="follow-us">
<h3 class="footer-heading">Follow us</h3>
<div>
<a href="#" class="icon"><i class="fa-brands fa-facebook"></i> Facebook</a>
</div>
<div>
<a href="#" class="icon"><i class="fa-brands fa-twitter"></i> Twitter</a>
</div>
<div>
<a href="#" class="icon"><i class="fa-brands fa-instagram"></i> Instagram</a>
</div>
</div>
<div class="visit-us">
<h3 class="footer-heading">Visit us</h3>
<div>
<a href="#" class="icon"><i class="fa-solid fa-location-dot"></i>633 Washington George WTX 0598</a>
</div>
</div>
</div>
<hr class="line-footer">
</footer>
</body>
</html>