-
Notifications
You must be signed in to change notification settings - Fork 0
/
weddingparty.html
102 lines (91 loc) · 4.16 KB
/
weddingparty.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Wedding Party</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The Personal Web Site of Matt and Jessica">
<meta name="author" content="Matt Phillips">
<meta name="google-site-verification" content="1ntOqKNPwOGRJAcdtW5Y7GtYnjuiRlMq0wVoue3riT4">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
<style>.navbar{margin-bottom:10px;}</style>
</head>
<body>
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<div class="container">
<button type="button" data-toggle="collapse" data-target=".nav-collapse" class="btn btn-navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="brand">MattAndJessica.us </a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">The Wedding </a>
<ul class="dropdown-menu">
<li><a href="about.html">About Us</a></li>
<li><a href="proposal.html">The Proposal</a></li>
<li><a href="ceremony.html">Ceremony</a></li>
<li><a href="reception.html">Reception</a></li>
<li><a href="weddingparty.html">Wedding Party</a></li>
<li><a href="registries.html">Gift Registries</a></li>
<li><a href="honeymoon.html">Honeymoon</a></li>
</ul></li>
<li><a href="blog.html">Blog </a></li>
<li><a href="mailto:[email protected]">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<h4> <b>Matt </b>and <b>Jessica</b><span id="themessage"></span></h4>
<h2>The Wedding Party</h2>
<h4>Christine (maid-of-honor/sister-of-bride)</h4>
<img src="img/christine.jpg" alt="christine and jess" height="240" width="320">
<h4>Mandy (sister-of-groom)</h4>
<img src="img/mandy.jpg" alt="mandy and jess" height="240" width="320">
<h4>Allie (friend-of-couple)</h4>
<img src="img/allie.jpg" alt="allie and jess" height="240" width="320">
<h4>Natalie (friend-of-couple)</h4>
<img src="img/natalie.jpg" alt="nat and jess" height="240" width="320">
<h4>Callie (friend-of-couple)</h4>
<img src="img/callie.jpg" alt="callie and jess" height="240" width="320">
<h4>Sean (best man)</h4>
<img src="img/sean.jpg" alt="sean and matt" height="240" width="320">
<h4>John (friend-of-couple)</h4>
<img src="img/john.jpg" alt="john and matt" height="240" width="320">
<h4>Matt (friend-of-couple)</h4>
<img src="img/wilson.jpg" alt="wilson and matt" height="240" width="320">
<h4>Matt (brother-of-bride)</h4>
<img src="img/brothermatt.jpg" alt="matt" height="240" width="320">
<h4>Joey (brother-of-bride)</h4>
<img src="img/joey.jpg" alt="joey" height="240" width="320">
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.1.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script>$(function(){
var elem = $("#themessage");
var then = new Date("09/21/2013 00:00:00");
var now = new Date();
var span = Math.ceil(Math.abs(now-then) / 86400000);
if(now < then){
elem.text(" will be married in "+span+" days!");
}else{
elem.text(" have been married for "+span+" days!");
}
});</script><script>var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38648463-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>
</body>
</html>