-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchecklists.html
More file actions
75 lines (71 loc) · 3.92 KB
/
Copy pathchecklists.html
File metadata and controls
75 lines (71 loc) · 3.92 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Making Memories - Lists and Links</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" href="activities.html">Activities</a>
</li>
<li class="nav-item">
<a class="nav-link active" 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-sm-5">
<h2>Lists</h2>
<h4>Grab and Go Documents</a></h4>
<p><a href="checklists/family-info-sheet.pdf">Family Member Information</a></p>
<p><a href="checklists/family-info-sheet.pdf">Home and Auto Information</a></p>
<p><a href="checklists/family-info-sheet.pdf">Personal Tax Information</a></p>
<p><a href="checklists/family-info-sheet.pdf">Personal Possessions</a></p>
<p><a href="checklists/family-info-sheet.pdf">Pet Information</a></p>
<p><a href="checklists/family-info-sheet.pdf">Wills and Trust Information</a></p>
<p><a href="checklists/family-info-sheet.pdf">Funeral Planning Information</a></p>
<p><a href="checklists/family-info-sheet.pdf">Emergency Plans Information</a></p>
</div>
<div class="col-sm-1"></div> <!--center column-->
<div class="col-sm-5">
<h2>Links</h2>
<p><a href="https://www.utah.gov/beready/index.html">Utah Be Ready</a></p>
<p><a href="https://www.draper.ut.us/Directory.aspx">Draper City Links and Phone Numbers</a></p>
<p><a href="https://www.draper.ut.us/451/Emergency-Preparedness">Draper City Emergency Preparedness</a></p>
<p><a href="https://www.dominionenergy.com/utah/report-gas-emergency">Report Gas Emergency</a></p>
<p><a href="https://www.rockymountainpower.net/">Rocky Mountain Power</a></p>
<p><a href="https://www.waterpro.net">Water Pro</a></p>
<p><a href="http://poisoncontrol.utah.edu/">Utah Poison Control</a> 800-222-1222</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>