forked from vporwal/maps-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
38 lines (38 loc) · 1.68 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<title>Glenorchy City Council GIS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="css/jquery.mobile-1.1.1.min.css" />
<link rel="stylesheet" href="css/jqm-custom.css" />
<script src="src/jquery/jquery-1.7.1.min.js"></script>
<script src="src/jquery/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-position="fixed" data-tap-toggle="false" data-fullscreen="false">
<h1>Contact Us</h1>
</div><!-- /header -->
<div data-role="content">
<p>You can contact us at <a href=mailto:[email protected]>[email protected]</a>.</p>
<p>Or you can fill in this form:</p>
<form method="post" name="myemailform" action="form-to-email.php">
Name:<input type="text" name="name" value="your name" onClick="this.select();" ><br>
E-mail:<input type="text" name="email" value="your email" onClick="this.select();" ><br>
Comment:<textarea name="message" rows="6" cols="50"></textarea><br>
<input type="submit" name='submit' value="submit">
</form>
</div><!-- /content -->
</div><!-- /page -->
<script type="text/javascript">
//Analytics
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36489204-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</html>