-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.php
31 lines (28 loc) · 1002 Bytes
/
contact.php
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<?php include_once('common/header.php'); ?>
<title>Contact London Stage Database Project</title>
</head>
<body id="contact">
<?php include_once('common/nav.php'); ?>
<div id="main" class="main grid-container">
<div class="grid-x contact-wrap">
<div class="small-12 page-heading">
<h1>Contact Us</h1>
</div>
<div method="post" class="small-12 medium-11 large-9 cell grid-x contact-form">
<p>
We would love to hear from you! Feel free to
<a href='mailto:[email protected]'>email us</a> your
questions, comments, or bug reports. When reporting an issue with
the site, please include as much information as possible about
your operating system and web browser so that we can reproduce
the problem.
</p>
</div>
</div>
</div>
<?php include_once('common/footer.php'); ?>
</body>
</html>