-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
81 lines (68 loc) · 2.53 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
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dental Mission | Welcome</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<div class="row">
<div class="large-2 columns">
<h1><a href="index.html"><img src="img/mainlogo.jpg"/></a></h1>
</div>
<div class="large-10 columns">
<ul class="right button-group">
<li><a href="index.html" class="button">Home</a></li>
<li><a href="about.html" class="button">About Us</a></li>
<li><a href="donate.html" class="button">Ways to Donate</a></li>
<li><a href="supporters.html" class="button">Supporters</a></li>
<li><a href="contact.html" class="button">Contact Us</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="panel">
<h4>Contact Us</h4>
<div class="row">
<div class="large-12 columns">
<p> You may contact us at the e-mail link below.</p>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</body>
<footer class="row">
<div class="large-12 columns">
<hr/>
<div class="row">
<div class="large-6 columns">
<p>© 2015</p>
</div>
<div class="large-6 columns">
<ul class="inline-list right">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="donate.html">Ways to Donate</a></li>
<li><a href="supporters.html">Supporters</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59009416-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>