-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (66 loc) · 3.18 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
<!DOCTYPE html>
<html>
<head>
<title>Oleanna</title>
<!-- Bootstrap -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Personal Stylesheet -->
<link rel="stylesheet" type="text/css" href="oleanna.css">
<!-- FontAwesome -->
<link rel="stylesheet" href="https://opensource.keycdn.com/fontawesome/4.6.3/font-awesome.min.css" integrity="sha384-Wrgq82RsEean5tP3NK3zWAemiNEXofJsTwTyHmNb/iL3dP/sZJ4+7sOld1uqYJtE" crossorigin="anonymous">
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<!-- Title icon -->
<link rel="icon" href="favicon.png">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand"><i class="fa fa-tree" aria-hidden="true"></i> Oleanna</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="lodging.html">Where to stay</a></li>
<li><a href="entertainment.html">What to do</a></li>
<li><a href="photos.html">Pictures</a></li>
<li><a href="events.html">Events</a></li>
<li ><a href="contact.html">Contact</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div>
</div>
</nav>
<!-- The main body -->
<div class="container">
<div class="row">
<div class="col-lg-12">
<div id="content">
<h1>Oleanna</h1>
<h3>Welcome to a little slice of heaven</h3>
<hr>
<br>
<div class="content"><span id="description"> Oleanna is divided into 3 main areas:<br><br>
<p><b>Oleanna</b> is the original 13 acres complete with art installations and years of memories</p>
<p><b>Oleannalandia</b> is situated about a 5 minute walk from Oleanna along our private gravel road. Oleannalandia boasts such modern amenities as central heating, plumbing, electricity, even a phone!</p>
<p><b>Duckabush Dick's</b>, also known as "the field" is our most recent addition to our great land empire! Recently purchased from our neighbor <i>Duckabush Dick</i>, his name lives on in posterity as we camp together at this central meeting place</p></span>
<!-- <button class="btn btn-default btn-lg"><i class="fa fa-tree" aria-hidden="true"></i> Get Started</button> -->
</div>
</div>
</div>
</div>
<!-- JavaScrips -->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>