-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (116 loc) · 4.98 KB
/
index.html
File metadata and controls
132 lines (116 loc) · 4.98 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
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<title>Happily Ever Manca</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--JQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Bootstrap -->
<link href="bootstrap-3.3.6-dist/css/bootstrap.min.css" rel="stylesheet">
<script src="bootstrap-3.3.6-dist/js/bootstrap.min.js"></script>
<script src="bootstrap-3.3.6-dist/js/collapse.js"></script>
<script src="bootstrap-3.3.6-dist/js/transition.js"></script>
<!--css shheet-->
<link rel="stylesheet" href="./wedding.css">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="">Happily Ever Manca</a>
</div>
<div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="#welcome">Welcome</a></li>
<li><a href="#aboutus">About Us</a></li>
<li><a href="#location">Location</a></li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="">Misc <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#accomadations">Places To Stay</a></li>
<li><a href="#registry">Accomodations</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</nav>
<div id="welcome" class="container-fluid">
<h1 id="welcomeMessage">Happily Ever Manca</h1>
<!--<div class="panel panel-default" style="width:10vw">
<div class="panel-heading" style="width:10vw"><h3>Hello!</h3></div>
<div class="panel-body" style="width:10vw">Please fill out the below information to be added to our site contact list! This information is kept securely using our HubSpot CRM. We value your privacy. We will not give out your information to anyone else.
</div>
</div>-->
</div>
<div id="aboutus" class="container-fluid carousel slide" data-ride="carousel>
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#aboutus" data-slide-to="0" class="active"></li>
<li data-target="#aboutus" data-slide-to="1"></li>
<li data-target="#aboutus" data-slide-to="2"></li>
<li data-target="#aboutus" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="./img/story0.jpg" alt="Chania">
<div class="carousel-caption">
<h3>Where it all began!</h3>
<p>We were regulars on a private beach,
hanging out with mutual friends.</p>
</div>
</div>
<div class="item">
<img src="./img/popinn.jpg" alt="Chania">
</div>
<div class="item">
<img src="./img/chapel.jpg" alt="Flower">
</div>
<div class="item">
<img src="./img/popinn.jpg" alt="Flower">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#aboutus" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#aboutus" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div id="location" class="container-fluid">
<h2>Location</h2>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d33770.93258016395!2d-70.47841927783273!3d41.57017676162564!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xcd9f2bd37356fc2d!2sPopponesset+Inn+Restaurant!5e0!3m2!1sen!2sus!4v1467216001336"
width="70%" height="70%" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<div id="accomadations" class="container-fluid">
<h2>Accomodations</h2>
<p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at the navigation bar while scrolling!</p>
<p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at the navigation bar while scrolling!</p>
</div>
<div id="registry" class="container-fluid">
<h2>Registry</h2>
<p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at the navigation bar while scrolling!</p>
<p>Try to scroll this section and look at the navigation bar while scrolling! Try to scroll this section and look at the navigation bar while scrolling!</p>
</div>
</body>
</html>
<script>
$(document).ready(function(){
$('body').scrollspy({target: ".navbar", offset: 50});
$(".carousel").carousel({
interval: 5000,
pause: "hover",
});
});
</script>