-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.html
129 lines (117 loc) · 3.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HTML Sitemap for Downsnap Website">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="bingbot" content="index, follow">
<title>Site Map - Downsnap</title>
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
line-height: 1.6;
}
/* Header Styles */
header {
background-color: #007bff;
color: white;
padding: 20px 10px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
margin: 5px 0 0;
font-size: 1.2rem;
}
/* Main Content Styles */
main {
max-width: 800px;
margin: 30px auto;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
main ul {
list-style: none;
padding: 0;
}
main ul li {
margin: 10px 0;
}
main ul li a {
text-decoration: none;
color: #007bff;
font-weight: bold;
transition: color 0.3s;
}
main ul li a:hover {
color: #0056b3;
}
/* Nested List Styles */
main ul li ul {
margin-top: 5px;
padding-left: 20px;
border-left: 2px solid #ddd;
}
main ul li ul li {
margin: 5px 0;
}
/* Footer Styles */
footer {
text-align: center;
padding: 20px 10px;
background-color: #333;
color: white;
font-size: 0.9rem;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
<h1>Site Map</h1>
<p>A complete overview of the Downsnap website.</p>
</header>
<main>
<ul>
<li><a href="https://downsnap.onrender.com/">Home</a></li>
<li><a href="https://downsnap.onrender.com/contact">Contact Us</a></li>
<li><a href="https://downsnap.onrender.com/about">About Us</a></li>
<li>
<a href="https://downsnap.onrender.com/blog">Blog</a>
<ul>
<li><a href="https://downsnap.onrender.com/blog/post1">Post 1</a></li>
<li><a href="https://downsnap.onrender.com/blog/post2">Post 2</a></li>
</ul>
</li>
<li><a href="https://downsnap.onrender.com/disclaimer">Disclaimer</a></li>
<li><a href="https://downsnap.onrender.com/amp">Amp</a></li>
<li><a href="https://downsnap.onrender.com/privacy">Privacy Policy</a></li>
<li>
<a href="https://downsnap.onrender.com/sitemap">Follow Us</a></li>
<ul>
<li><a href="https://facebook.com/thepalky" target="_blank">Facebook</a></li>
<li><a href="https://instagram.com/thepalky" target="_blank">Instagram</a></li>
<li><a href="https://www.tiktok.com/@thepalky" target="_blank">TikTok</a></li>
</ul>
</li>
</ul>
</main>
<footer>
<p>© 2025 Downsnap. All rights reserved.</p>
</footer>
</body>
</html>