-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivities.html
More file actions
109 lines (104 loc) · 5.58 KB
/
Copy pathactivities.html
File metadata and controls
109 lines (104 loc) · 5.58 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Making Memories - Activities</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css" integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous" />
<link rel="stylesheet" href="custom.css" />
</head>
<body>
<div class="my-bg-photo bg-secondary text-white py-5 text-center shadow">
<h1 class="display-4" style="border-bottom:10px double orange;">Making Memories at the Ledges</h1>
<h2 class="display-6">The Best Thing about Memories is Making Them!!</h2>
<h2 class="display-6">-While visiting St George Utah-</h2><br><br><br><br><br><br><br><br><br>
</div>
<div class="container my-custom-container pt-3">
<nav class="mb-3">
<ul class="nav nav-tabs justify-content-center">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="photos.html">Photos</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="activities.html">Activities</a>
</li>
<li class="nav-item">
<a class="nav-link" href="checklists.html">Lists and Links</a>
</li>
<li class="nav-item">
<a class="nav-link" href="whatsnew.html">What's New</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</nav>
<div class="row">
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/snowcanyon.jpg" class="img-fluid" alt="high five" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-ment-emo.html">Snow Canyon State Park</a></p>
</div>
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/zionnationalpark.jpg" class="img-fluid" alt="check list" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-predisasterplan.html">Zions National Park</a></p>
</div>
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/brycecanyonnp.jpg" class="img-fluid" alt="help up" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">Bryce Canyon National Park</a></p>
</div>
</div>
<div class="row">
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/capitalreefnp.jpg" class="img-fluid" alt="gas range" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">Capital Reef National Park</a></p>
</div>
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/greatbasinnp.jpg" class="img-fluid" alt="drink water" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">Great Basin National Park</a></p>
</div>
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/tonaquintnature.jpg" class="img-fluid" alt="beans" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">Tonaquint Nature Center</a></p>
</div>
</div>
<!--
<div class="row">
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/shelter.jpg" class="img-fluid" alt="house" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">Park Avenue Trail</a></p>
</div>
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/flooding.jpg" class="img-fluid" alt="water in house" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">Pioneer Park</a></p>
</div>
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/storms.jpg" class="img-fluid" alt="dark clouds" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">Red Hills Deseret Garden</a></p>
</div>
</div>
<div class="row">
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/earthquake.jpg" class="img-fluid" alt="cracked concrete" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">The Vortex (The Bowl)</a></p>
</div>
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/electricity.jpg" class="img-fluid" alt="power lines" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">St George Dinosaur Discovery</a></p>
</div>
<div class="col-md-4 mb-4 mb-md-0">
<img src="images/fire.jpg" class="img-fluid" alt="fire fighters" style="width:250px; height:160px;">
<p class="mt-1 small"><a href="cat-coming-soon.html">Temple Quarry Trail</a></p>
</div>
</div>
</div>
-->
<footer class="border-top mt-5 py-4 text-center text-muted small">
<p>© 2021 Making Memories 503, LLC</p>
</footer>
<!-- JavaScript and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js" integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/" crossorigin="anonymous"></script>
</body>
</html>