-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
177 lines (177 loc) · 6.16 KB
/
contact.html
File metadata and controls
177 lines (177 loc) · 6.16 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Send us a message for more information about our exhibits, group tours, events or anything else."
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/adec9b814a.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/contact.css" />
<link rel="stylesheet" href="css/media.css" />
<title>Community Science Museum | Contact Us</title>
</head>
<body>
<div class="container">
<div class="nav_bar">
<a href="index.html" class="logo">
<img src="logo/logo-top.png" alt="Community Science Museum" />
<span>
<span class="regular">Community</span>
<span>Science</span>
<span class="regular">Museum</span>
</span>
</a>
<label for="hamburger-menu"
><i class="fas fa-bars" aria-hidden="true"></i
></label>
<input type="checkbox" id="hamburger-menu" />
<nav>
<ul>
<li>
<a href="index.html">home</a>
</li>
<li>
<a href="visit.html">visit</a>
</li>
<li>
<a href="exhibition.html">exhibits</a>
</li>
<li>
<a href="events.html">events</a>
</li>
<li>
<a href="involved.html">get involved</a>
</li>
<li>
<a class="active" href="contact.html">contact us</a>
</li>
</ul>
</nav>
</div>
<header>
<div class="shadow-box">
<div class="header-content">
<h1>contact us</h1>
<p>
Send us a message for more information about our exhibits, group
tours, events or anything else.
</p>
</div>
</div>
</header>
<main>
<div class="background-container-contact">
<div class="white-boxes white-boxes-info text-black">
<section id="form" class="white-box white-box-contact">
<form id="contactForm" method="POST">
<div class="form-content">
<label for="name">Name</label>
<input type="text" id="name" name="name" />
<div class="form-error" id="nameError">
Please enter your name
</div>
<label for="email">Email</label>
<input type="email" id="email" name="email" />
<div class="form-error" id="emailError">
Please enter a valid email address
</div>
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone" />
<div class="form-error" id="phoneError">
Please enter a valid phone number
</div>
<label for="message">Message</label>
<textarea name="message" id="message"></textarea>
<button disabled type="submit" class="cta-contact cta-involve"
>send</button>
<div class="form-error" id="messageError">
Please enter a message (Minimum 10 characters)
</div>
</div>
</form>
</section>
<section class="white-box white-box-contact white-box-info">
<h2>contact info</h2>
<div>
<div class="info-title">location</div>
<p class="address-space">Community Science Museum</p>
<p>
Vestre Holbergsallmenningen <br />
5011 Bergen <br />
Norway
</p>
</div>
<div>
<div class="info-title">email</div>
<p>contact@csm.com</p>
</div>
<div>
<div class="info-title">phone</div>
<p>+47 00009999</p>
</div>
</section>
</div>
</div>
<div id="confirmation" class="overlay">
<div class="popup">
<div>
<h2>your Message is sent!</h2>
<div class="popup-button">
<button class="cta-contact cta-involve close-button">close</button>
</div>
</div>
</div>
</div>
</main>
<footer>
<hr />
<div class="flex-footer">
<div class="footer-links">
<h4>navigation</h4>
<a href="index.html">home</a>
<a href="visit.html">visit</a>
<a href="exhibition.html">exhibits</a>
<a href="events.html">events</a>
<a href="involved.html">get involved</a>
<a href="contact.html">contact us</a>
</div>
<div class="bottom-logo">
<img
src="logo/logo-bottom.svg"
alt="Community Science Museum Logo"
/>
</div>
</div>
<div class="social-media text-black">
<a href="https://www.facebook.com"
><i class="fab fa-facebook-square"></i
></a>
<a href="https://www.instagram.com"
><i class="fab fa-instagram-square"></i
></a>
<a href="https://www.twitter.com"
><i class="fab fa-twitter-square"></i
></a>
</div>
<a class="to-top" href="#">
<i class="fas fa-chevron-circle-up"></i>
</a>
<p class="copyrights">
© 2021 Community Science Museum. All Rights Reserved
</p>
</footer>
</div>
<script src="js/formValidation.js"></script>
</body>
</html>