-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
74 lines (56 loc) · 2.41 KB
/
contact.html
File metadata and controls
74 lines (56 loc) · 2.41 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
<!doctype HTML>
<html lang="en-gb">
<head>
<meta charset="UTF-8">
<meta name="description" content="META" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact Us</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="layout.css" />
<a name="top"></a>
</head>
<body>
<div class="header">
<img class="headerimg" src="images/logomod.png">
</div>
<nav class="page-nav">
<ul style="list-style-type:none">
<li><a href="index.html">Home</a>
</li>
<li><a href="museums.html">Museums</a>
</li>
<li><a href="art.html">Art Galleries</a>
</li>
<li><a href="about.html">About Us</a>
</li>
<li><a href="contact.html">Contact Us</a>
</li>
</ul>
</nav>
<div class="responsivecontent">
<h2>Contact Us</h2>
<form action="https://formspree.io/16016183@stu.mmu.ac.uk" method="post">
<p>
<label for="contact-name">Your Name</label>
<input id="contact-name" type="text" name="contact-name" />
</p>
<p>
<label for="contact-email">Your email address</label>
<input id="contact-email" type="email" name="contact-email" /> </p>
<p>
<label for="contact-phone">Your phone number</label>
<input id="contact-phone" type="tel" name="contact-phone" /> </p>
<p>
<label for="contact-message">Your message</label>
<textarea id="contact-message" name="contact-message" rows="5"> </textarea>
</p>
<p>
<input type="submit" value="Submit" /> </p>
</form>
</div>
</body>
<footer class="page-footer">
<p>Build Digital |<a href="#top"> Back to Top</a></p>
</footer>
</html>