-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (115 loc) · 4.89 KB
/
index.html
File metadata and controls
120 lines (115 loc) · 4.89 KB
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap.bundle.js"></script>
<link href="https://fonts.googleapis.com/css?family=Alegreya%20SC" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Allura" rel="stylesheet">
<title>Home</title>
</head>
<body>
<!-- Header -->
<header> Michelle & Thomas</header>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ourStory.html">Our Story</a>
</li>
<li class="nav-item">
<a class="nav-link" href="photos.html">Photos</a>
</li>
<li class="nav-item">
<a class="nav-link" href="weddingParty.html">Wedding Party</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Registry.html">Registry</a>
</li>
<li class="nav-item">
<a class="nav-link" href="rsvp.html">RSVP</a>
</li>
<li class="nav-item">
<a class="nav-link" href="toDo.html">Things to do</a>
</li>
<li class="nav-item">
<a class="nav-link" href="schedule.html">Schedule of Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="travel.html">Travel</a>
</li>
<li class="nav-item">
<a class="nav-link" href="guestBook.html">Guest Book</a>
</li>
</ul>
</div>
</div>
</nav>
<header>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<!-- Slide One - Set the background image for this slide in the line below -->
<div class="carousel-item active" style="background-image: url('img/MHG_4201.jpg')">
<div class="carousel-caption d-none d-md-block">
<h2 class="display-4">Excitement!</h2>
<p class="lead">We are excited to take this next step in our lives together.</p>
</div>
</div>
<!-- Slide Two - Set the background image for this slide in the line below -->
<div class="carousel-item" style="background-image: url('img/MHG_4191.jpg')">
<div class="carousel-caption d-none d-md-block">
<h2 class="display-4">Family</h2>
<p class="lead">Our family, minus a lot of plants; Michelle, Thomas, and Penelope!</p>
</div>
</div>
<!-- Slide Three - Set the background image for this slide in the line below -->
<div class="carousel-item" style="background-image: url('img/MHG_4199.jpg')">
<div class="carousel-caption d-none d-md-block">
<h2 class="display-4">Forward</h2>
<p class="lead">Looking towards the future.</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</header>
<!-- Page Content -->
<section class="py-5">
<div class="days">
<div id="display-l">July 17, <br> 2021</div>
<div id="centerLine"></div>
<div id="display-r">Asheville, <br> NC</div>
</div>
<div id="countdown"> <iframe src="http://free.timeanddate.com/countdown/i7kj8i1h/n2464/cf12/cm0/cu1/ct0/cs1/ca0/co0/cr0/ss0/cacb87e7e/cpcb87e7e/pcfff/tcfff/fs100/szw2000/szh843/iso2021-07-17T00:00:00" allowTransparency="true" frameborder="0" width="211" height="180"></iframe>
</div>
</section>
</body>
</html>