forked from econway0321/project-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
campfires.html
100 lines (95 loc) · 3.45 KB
/
campfires.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
<!doctype html>
<html lang="en">
<head>
<title>CO Camping</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<!-- Material Kit CSS -->
<link href="../assets/css/material-dashboard.css?v=2.1.2" rel="stylesheet" />
</head>
<body class="">
<div class="wrapper ">
<div class="sidebar" data-color="green" data-background-color= "white" data-image="assets/img/sidebar-4.jpg">
<!--
Tip 1: You can change the color of the sidebar using: data-color="purple | azure | green | orange | danger"
Tip 2: you can also add an image using data-image tag
-->
<div class="text-center">
<h3 class="simple-text logo-mini" style="color:white">
CO National Parks
</h3>
<br>
<h4 class="simple-text logo-normal" style="color:white">
Camping Planner
</h4>
<hr>
</div>
<div class="sidebar-wrapper">
<ul class="nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">
<i class="material-icons">dashboard</i>
<p>Dashboard</p>
</a>
<!-- your sidebar here -->
</li>
<li class="nav-item active">
<a class="nav-link" href="campfires.html">
<i class="material-icons">bubble_chart</i>
<p>Campfire</p>
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="live.html">
<i class="material-icons">location_ons</i>
<p>Live Weather</p>
</a>
</li>
</ul>
</div>
</div>
<div class="main-panel">
<!-- End Navbar -->
<!-- your content here -->
<div class="container box">
<div class="column">
<div class="col-md-12">
<h3 class="title" style="color:white">🔥 Live Camp Fire</h3>
<p>Can't get out yet? Sit back and relax with this virtual campfire!</p>
<hr>
<!-- Left box -->
<div class="container-fluid">
<iframe src="https://player.vimeo.com/video/21546180" width="1080" height="600" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
<!--Footer-->
<footer class="footer">
<div class="container-fluid">
<nav class="float-left">
<ul>
<li>
<a href="https://www.creative-tim.com">
Content by Austin Olea, Susan Farago, David Jimenez, Jenni Davis, Elizabeth Conway
</a>
</li>
</ul>
</nav>
<div class="copyright float-right">
©
<script>
document.write(new Date().getFullYear())
</script>, template made with <i class="material-icons">favorite</i> by
<a href="https://www.creative-tim.com" target="_blank">Creative Tim</a> for a better web.
</div>
</div>
</footer>
</div>
</div>
</body>
</html>