-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
78 lines (72 loc) · 5.71 KB
/
header.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
<!DOCTYPE html>
<nav id="main_nav" class="navbar navbar-expand-lg navbar-light bg-white shadow">
<div class="container d-flex justify-content-between align-items-center">
<a class="navbar-brand h1" href="index.html">
<i class='bx bx-buildings bx-sm text-dark'></i>
<span class="text-dark h4">Purple</span> <span class="text-primary h4">Hub</span>
</a>
<button class="navbar-toggler border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-toggler-success" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="align-self-center collapse navbar-collapse flex-fill d-lg-flex justify-content-lg-between" id="navbar-toggler-success">
<div class="flex-fill mx-xl-5 mb-2">
<ul class="nav navbar-nav d-flex justify-content-between mx-xl-5 text-center text-dark">
<li class="nav-item">
<a class="nav-link btn-outline-primary rounded-pill px-3" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link btn-outline-primary rounded-pill px-3 dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Menu
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="blank page temp.html">Financial Help</a></li>
<li><a class="dropdown-item" href="blank page temp.html">Will and Probate</a></li>
<li><a class="dropdown-item" href="Funeral_Arrangements.html">How To Make Funeral Arrangements</a></li>
<li><a class="dropdown-item" href="blank page temp.html">Emotional Support and Grief Resources</a></li>
<li><a class="dropdown-item" href="blank page temp.html">Dealing with Insurance</a></li>
<li><a class="dropdown-item" href="blank page temp.html">Whom to Ask</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link btn-outline-primary rounded-pill px-3 dropdown-toggle" href="#" id="checklistDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Checklist
</a>
<ul class="dropdown-menu" aria-labelledby="checklistDropdown">
<li><h6 class="dropdown-header">Immediately After the Death</h6></li>
<li><a class="dropdown-item" href="contact_immediate_family.html">Contact immediate family</a></li>
<li><a class="dropdown-item" href="notify_family_guide.html">Guide: How to notify family members</a></li>
<li><a class="dropdown-item" href="notify_employer.html">Notify deceased's employer</a></li>
<li><a class="dropdown-item" href="employer_notification_letter.html">Template: Employer notification letter</a></li>
<li><hr class="dropdown-divider"></li>
<li><h6 class="dropdown-header">Within Days of the Death</h6></li>
<li><a class="dropdown-item" href="Funeral_Arrangements.html">Make funeral arrangements</a></li>
<li><a class="dropdown-item" href="find_funeral_homes.html">Find nearby funeral homes</a></li>
<li><a class="dropdown-item" href="write_obituary.html">Write obituary</a></li>
<li><a class="dropdown-item" href="obituary_writing_guide.html">Obituary writing guide</a></li>
<li><hr class="dropdown-divider"></li>
<li><h6 class="dropdown-header">Two Weeks After the Death</h6></li>
<li><a class="dropdown-item" href="notify_agencies.html">Notify state and federal agencies</a></li>
<li><a class="dropdown-item" href="agency_notification_checklist.html">Agency notification checklist</a></li>
<li><a class="dropdown-item" href="handle_digital_accounts.html">Handle digital accounts</a></li>
<li><a class="dropdown-item" href="digital_account_management_guide.html">Digital account management guide</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link btn-outline-primary rounded-pill px-3" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link btn-outline-primary rounded-pill px-3" href="#">Contact</a>
</li>
</ul>
</div>
<div class="navbar align-self-center d-flex">
<a class="nav-link" href="about.html"><i class='bx bx-info-circle bx-sm text-primary'></i></a>
<a class="nav-link" href="blank page temp.html"><i class='bx bx-help-circle bx-sm text-primary'></i></a>
<a class="nav-link" href="blank page temp.html"><i class='bx bx-envelope bx-sm text-primary'></i></a>
</div>
</div>
</div>
</nav>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/custom.js"></script>