-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththank_you.html
153 lines (75 loc) · 2.85 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name='viewport' content='width=device-width, initial-scale=1.0, user-scalable=0' >
<link href='http://fonts.googleapis.com/css?family=Open+Sans:700,300,400' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="http://d-bird.org/nyca%20fav%20icon.ico">
<title>D-Bird</title>
<script src="js/vendor/jquery.js"></script>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="foundation-icons/foundation-icons.css">
<link rel="stylesheet" href="css/app.css" />
<link rel="stylesheet" href="css/site_navbar.css" />
<link rel="stylesheet" href="css/radio.buttons.css" />
<script src="js/vendor/modernizr.js"></script>
<!-- DATEPICKER CSS-->
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
</head>
<body>
<div class="contain-to-grid nav-container">
<nav class="top-bar" data-topbar role="navigation">
<ul class="title-area">
<li class="name show-for-small-only">
<h1><a href="#">D-Bird.org</a></h1>
<div class="powered-by">
<span>Powered by: </span><a href="http://www.nycaudubon.org/"> NYC AUDUBON</a>
</div>
</li>
</ul>
<ul class="title-area">
<li class="name show-for-medium-up">
<h1><a href="#">D-Bird.org</a></h1>
<div class="powered-by">
<span>Powered by: </span><a href="http://www.nycaudubon.org/"> NYC AUDUBON</a>
</div>
</li>
</ul>
<section class="right tab-bar-section">
<a href="tel://1-555-555-5555" class="show-for-small-only phone-style"><i class="fi-telephone"></i> (212) 691-7483</a>
<a href="tel://1-555-555-5555" class="show-for-medium-up phone-style disabled_link" disabled><i class="fi-telephone"></i> (212) 691-7483</a>
</section>
</nav>
</div>
<div class="row" id="hero">
<div class="small-12 medium-6 large-6 columns">
<img src="img/nyca_logo.jpg"/>
</div>
<div class="small-12 medium-6 large-6 columns info">
<div style="text-align: center;padding: 0px 20px 0px 20px;">
<br/>
<p><strong style="color:rgba(60,60,60,1.0);font-size:40px;">Thank You</strong></p>
</div>
</div>
</div>
<br/><br/><br/>
<div style="height:100px;background:rgba(150,150,150,1.0);">
Footer
</div>
<script src="js/foundation.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script>
$(function() {
$( "#Date" ).datepicker({maxDate: "+0D" });
});
</script>
<script>
$(function() {
$("#Time").timepicker();
});
</script>
<script>
$(document).foundation();
</script>
</body>
</html>