-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (60 loc) · 2.49 KB
/
index.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
---
id: home
---
<div>
<div id="main">
<div class="site-main-title">The Fergley Wedding</div>
<img class="main-photo desktop" src="assets/us.jpg"
alt="Matthias & Rebecca"
title="Matthias & Rebecca, under the Weeping Beech tree where we got engaged"
/>
<div class="site-subtitle desktop">
<div>April 28, 2018</div>
<div>The Waterworks Museum, Boston, Mass.</div>
</div>
<div class="site-subtitle mobile">
<div>April 28, 2018</div>
<div>The Waterworks Museum</div>
<div>Boston, Mass.</div>
</div>
<img class="main-photo mobile" src="assets/us.jpg"
alt="Matthias & Rebecca"
title="Matthias & Rebecca, under the Weeping Beech tree where we got engaged"
/>
<div class="main-nav-menu">
<ul>
<li><a href="event.html">Basic information</a></li>
<li><a href="venue.html">About the venue</a></li>
<li><a href="transportation.html">Getting around</a></li>
<li><a href="lodging.html">Where to stay</a></li>
<li><a href="boston.html">Things to do in Boston</a></li>
<li><a href="registry.html">Registry</a></li>
<li><a href="faq.html">F.A.Q.</a></li>
<li><a href="contact.html">Contact us</a></li>
</ul>
</div>
<div style="clear: both" />
<div class="emailSignup">
<form>
<div class="heading">Mailing list signup</div>
<div class="caption">Give us your contact information here and we’ll let you know when we have important information to share.</div>
<div class="fields">
<label for="name">Your name</label>
<input type="text" id="name" name="name" />
<label for="email">Your email address</label>
<input type="email" id="email1" name="email1" />
<label for="email">Type your email again</label>
<input type="email" id="email2" name="email2" />
<input type="button" id="submitBtn" value="Keep me posted!" />
</div>
</form>
<div id="emailSignupResponse">...</div>
</div>
</div>
</div>
<script src="js/emailCollection.js"></script>
<script>
$(function() {
setupEmailCollection();
});
</script>