-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (88 loc) · 3.14 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster|Open+Sans" />
<link rel="stylesheet" href="css/styles.css"/>
<title>NuCamp: A Better Way To Camp</title>
</head>
<body>
<header class="jumbotron jumbotron-fluid">
<div class="container">
<div class="row row-content align-items-center">
<div class="col">
<div>
<h1>NuCamp</h1>
<h2>a better way to camp</h2>
</div>
</div>
</div>
</div>
</header>
<div class="container">
<div class="row row-content align-items-center">
<div class="col-sm-4 order-sm-last col-md-3">
<h2 class="text-sm-right">Discover & Review</h2>
</div>
<div class="col">
<h3>Our Campsites</h3>
<p>Explore our growing database of curated campsites and leave your own reviews!</p>
</div>
</div>
</div>
<div class="container">
<div class="row row-content align-items-center">
<div class="col-sm-4 col-md-3">
<h2>Featured Campsites</h2>
</div>
<div class="col">
<h3>React Lake Campground</h3>
<p>Nestled in the foothills of the Chrome Mountains, this campground on the shores of the pristine React Lake is a favorite for fly fishers.</p>
</div>
</div>
</div>
<div class="container">
<div class="row row-content align-items-center">
<div class="col-sm-4 order-sm-last col-md-3">
<h2 class="text-sm-right">Our Community Partners</h2>
</div>
<div class="col">
<h3>Bootstrap Outfitters</h3>
<p>Bootstrap Outfitters supplies you gear you need at prices you can't beat.</p>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-4 col-sm-2 offset-1">
<h5>Links</h5>
<ul class="list-unstyled">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Sites</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="col-6 col-sm-5 text-center">
<h5>Social</h5>
<a href="http://instagram.com/">Instagram</a>
<a href="http://facebook.com/">Facebook</a>
<a href="http://twitter.com/">Twitter</a>
<a href="http://youtube.com/">YouTube</a>
</div>
<div class="col-sm-4 text-center">
Tel: 1-206-555-1234<br />
Email: campsites@nucamp.co
</div>
</div>
</div>
</footer>
<!-- jQuery must come first, then Popper.js, then the Bootstrap JavaScript plugins.-->
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>