-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
83 lines (75 loc) · 4.08 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
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=600, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>The Jermana Baby Shower</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Poiret+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Tangerine" rel="stylesheet">
<style>
</style>
</head>
<body>
<div class="container">
<div class="frame">
<div class="message">
<div class="picture">
<img class="stroller" src="Vintage-Blue-Baby-Stroller-Carriage-2.png" alt="">
</div>
<h1>Jermana cordially invite you to</h1>
<h2>A Jermana Baby Shower </h2>
<span class="extra-info">
<h3>Please join us on</h3>
<h3>Saturday 3rd March 2018 11:30am</h3>
<h4>(partners welcome)</h4>
<h3>at Bardolino's in Cadbury House</h3>
<h3>Frost Hill, Congresbury, Bristol BS49 5AD</h3>
<h1 id="section-break"> . . . Travel . . . </h1>
<h4>If you are travelling from Bristol or Bath, Cadbury House is close to Yatton Train Station. We are
happy to ferry people!</h4>
<h1 id="section-break"> . . . Gifts . . . </h1>
<h4>Whilst all we would like is your love and company, we have had a number of requests for a Baby Shower
Registry. Please click for our
<a href="https://www.amazon.co.uk/baby-reg/yanajermaine-yevsiyevich-smith-march-2017-bristol/21R6PONJ1CDAZ" target="_blank"
id="link"> Amazon</a> registry.</h4>
<h4>We will be using this same Wish List for our purchases, so please don't be bothered by the larger
items on the list. Feel free to use this list, or go rogue with your own ideas, or just give
us a big hug instead! We'd love a hug from you, always.</h4>
<h1 id="section-break"> . . . Cadbury . . . </h1>
<h4>As a complimentary gift from Cadbury, all guests will have free access to the facilities; this includes the sauna, pool and gym! You may also want to book a spa treatment (although this would not be free of charge). Check out the options at <a href="https://www.cadburyhotelbristol.co.uk/the-spa" target="_blank" id="link">Cadbury.</a></a> </h4>
</span>
<div class="rsvp extra-info">
<a class="button" href="mailto:[email protected]?subject=Jermana Baby Shower! We Are Coming">
We're Coming
</a>
<a class="button" href="mailto:[email protected]?subject=Jermana Baby Shower - Can't Make it">
Can't make it
</a>
</div>
</div>
<div class="bottom"></div>
<div class="left"></div>
<div class="right"></div>
<div class="top"></div>
</div>
</div>
<!-- Scripts go here -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function () {
/*! Fades in page on load */
$('body').css('display', 'none');
$('body').fadeIn(1200);
});
$(document).ready(function () {
$('.frame').click(function () {
$('.top').addClass('open');
$('.message').addClass('pull expand');
$('.extra-info').addClass('reveal-extra-info');
})
});
</script>
</body>
</html>