-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.html
160 lines (137 loc) · 5.1 KB
/
sitemap.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ZooTopia - Sitemap</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" href="./images/bird-logo.png" type="image/x-png">
<link rel="stylesheet" href="./bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/site.css">
<link rel="stylesheet" href="./css/nav.css" />
<link rel="stylesheet" href="./css/footer.css" />
<style>
.sitemap {
margin-bottom: 15rem !important;
}
.sitemap h2 {
margin-bottom: 10px;
}
.sitemap ul {
list-style-type: none;
padding: 0;
}
.sitemap ul li {
margin: 10px 0;
}
.sitemap ul li a {
text-decoration: none;
color: #333;
}
.sitemap ul li a:hover {
color: #007bff;
}
</style>
</head>
<body>
<span class="loader"></span>
<header>
<div class="topnav" id="myTopnav">
<a href="./index.html" class="site-icon">
<img src="./images/bird-logo.png">
</a>
<a href="./index.html" class="active">Home</a>
<div class="dropdown">
<button class="dropbtn">Categories</button>
<div class="dropdown-content">
<a href="./category/land.html">Terrestial</a>
<a href="./category/aquatic.html">Aquatic</a>
<a href="./category/aerial.html">Aerial</a>
</div>
</div>
<a href="./about.html">About</a>
<a href="./events.html">Events</a>
<a href="javascript:void(0);" class="icon">
<i class="fa fa-bars"></i>
</a>
<a class="active get-ticket-btn" href="./checkout.html">Get Ticket <i style="margin-left: 4px;" class="fa-solid fa-arrow-right"></i></a>
</div>
<!-- Top Navigation Menu -->
<div class="topnav-mobile">
<a href="./index.html" style="width: 50px; height: 50px; padding: 0; background: none !important;">
<img src="./images/bird-logo.png" loading="lazy" style="width: 50px;height: 50px;float: left;object-fit: contain;">
</a>
<div id="myLinks">
<a href="./index.html">Home</a>
<a href="./events.html">Events</a>
<a href="./about.html">About</a>
<a class="active" href="./checkout.html" style="
padding: 2rem;
text-align: end;
padding-right: 50px;
background: #008000a1;
">Get Ticket <i style="margin-left: 4px;" class="fa-solid fa-arrow-right"></i></a>
</div>
<a href="javascript:void(0);" class="icon" onclick="mobileMenu()">
<i class="fa fa-bars"></i>
</a>
</div>
</header>
<section class="container sitemap py-5 my-5">
<h2>Sitemap</h2>
<div class="row">
<div class="col-12 col-sm-6 col-md-4">
<h4>/</h4>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About Us</a></li>
</ul>
</div>
<div class="col-12 col-sm-6 col-md-4">
<h4>Animal Categories</h4>
<ul>
<li><a href="./category/land.html">Terrestial</a></li>
<li><a href="./category/aquatic.html">Aquatic</a></li>
<li><a href="./category/aerial.html">Aerial</a></li>
</ul>
</div>
<div class="col-12 col-sm-6 col-md-4">
<h4>General</h4>
<ul>
<li><a href="./checkout.html">Get Ticket</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./contact.html">Contact Us</a></li>
<li><a href="./about.html">About Us</a></li>
</ul>
</div>
</div>
</section>
<!-- FOOTER start -->
<footer>
<div class="footer-container">
<div class="social-icons">
<a href="https://facebook.com"><i class="fa-brands fa-facebook"></i></a>
<a href="https://instagram.com"><i class="fa-brands fa-instagram"></i></a>
<a href="https://x.com"><i class="fa-brands fa-twitter"></i></a>
<a href="https://youtube.com"><i class="fa-brands fa-youtube"></i></a>
</div>
<div class="footernav">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./contact.html">Contact Us</a></li>
<li><a href="./sitemap.html">Sitemap</a></li>
</ul>
</div>
</div>
<div class="footerbottom">
<p class="mb-0">
Copyright © 2024, Designed by
<span class="designer">PR-2024-04F</span>
</p>
</div>
</footer>
<!-- FOOTER /end -->
<script src="./bootstrap/js/bootstrap.bundle.js"></script>
<script src="./js/nav.js"></script>
</body>
</html>