-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
81 lines (76 loc) · 2.48 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 lang="en">
<head>
<meta charset="utf-8" />
<title>Contact Us</title>
<link rel="stylesheet" href="css/main.css" type="text/css" />
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.21/jquery-ui.min.js"></script>
<script src="js/KeyFinder.js"></script>
<!--Google Analytics Script-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38836821-1']);
_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>
<header>
<img class="whatKeyLogo" src="resources/WhatKeyLogo_v002.jpg" alt="Contact Us" />
<nav>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<div class="leftAd">
<script type="text/javascript">
google_ad_client = "ca-pub-5653507966255124";
/* KeyFinder_Right_Tall */
google_ad_slot = "5200048087";
google_ad_width = 160;
google_ad_height = 600;
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<div id="main">
<h2>Contact Us</h2>
<p class="aboutP">
Have a question, comment or suggestion?
</br></br>
Shoot us an email at <a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="rightAd">
<script type="text/javascript">
google_ad_client = "ca-pub-5653507966255124";
/* KeyFinder_Right_Tall */
google_ad_slot = "5200048087";
google_ad_width = 160;
google_ad_height = 600;
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</div>
<footer>
<nav>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<p><em>What Key Am I In? designed by Jason Ackerman, Copyright 2013<em></p>
</footer>
</body>
</html>