forked from kashmatic/mGSV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
43 lines (38 loc) · 1.25 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE HTML>
<html>
<head>
<title>mGSV :: Contact</title>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<meta charset="UTF-8">
<link rel="stylesheet" href="css/homepage_tutorial.css" />
<style type="text/css">
fieldset{width:718px;border:1px #B0C0D1 solid;padding:40px;}
legend{background:#B0C0D1;padding:4px 10px;color:#000000;}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20901299-3']);
_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>
</head>
<body>
<div id="page">
<? include ('lib/header.php') ?>
<div id="contact" class="section" style="padding:80px">
<fieldset>
<legend>Contact Information</legend>
<p class="bodypara">
Please send comments and suggestions to :
<a href="mailto:Qunfeng.Dong@unt.edu">Qunfeng.Dong@unt.edu</a>
</p>
</fieldset>
<? include ('lib/footer.php') ?>
</div>
</div><!-- end #page -->
</body>
</html>