forked from chrislkeller/nwsmkr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththank-you.html
executable file
·106 lines (78 loc) · 2.93 KB
/
thank-you.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE HTML>
<html lang="en">
<!-- BEGIN DOC HEADER -->
<head>
<!-- BEGIN META -->
<meta charset="utf-8" />
<title>nwsmkr</title>
<meta name="description" content="We'll change how you present news">
<meta name="keywords" content="visualizing connections, newsmakers, public figures, six degrees of separation">
<meta name="author" content="nwsmkr, © 2011">
<meta name="google-site-verification" content="ppHjGpSdVGKZmSCI1HdahgqU3faBzvgsOwLXZisQMo0" />
<meta name="robots" content="index,nofollow" />
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta name="viewport" content="initial-scale = 0.4, width=device-width, maximum-scale=0.6667, user-scalable=yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- END META -->
<!-- BEGIN FAVICON/MOBILE TOUCH ICON -->
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="icon.png">
<!-- END FAVICON/MOBILE TOUCH ICON -->
<!-- BEGIN CSS -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:600&v2' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/coming-soon.css">
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="css/ie-6.css" />
<![endif]-->
<!-- END CSS -->
<!-- BEGIN SCRIPTS -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<script src="scripts/jquery.validate.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#commentForm").validate({meta: "validate"});
});
</script>
</head>
<!-- END DOC HEADER -->
<!-- BEGIN BODY -->
<body>
<!-- BEGIN HEADER LOGO -->
<div id="header-logo">
<a href="http://www.nwsmkr.com/"><img src="images/logo.gif"></a>
</div>
<!-- BEGIN CONTENT -->
<div id="content">
<h2>Thank you.<br>We'll be in touch shortly.</h2>
<p style="font-size: 16px; color: #ffffff; text-align: center;">Meanwhile, feel free to search some example connections</p>
<!-- BEGIN FORM -->
<div id="contact-form">
<input type="submit" id="connections"name="submit" class="form-submit-button" value="Search Connections" />
</div>
<!-- END FORM -->
<h2 style="text-align: center">-- 30 --</h2>
</div>
<!-- END CONTENT -->
<!-- BEGIN SCRIPTS -->
<script type="text/javascript">
$('#connections').click(function(){
document.location.href='sis-slide.html';
})
</script>
<!-- END SCRIPTS -->
<!-- BEGIN GOOGLE ANALYTICS CODE -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-24670839-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>
<!-- END GOOGLE ANALYTICS CODE -->
</body>
<!-- END BODY -->
</html>
<!-- END DOCUMENT -->