-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.html
108 lines (98 loc) · 4.27 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
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CDN CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<style>
.bg-header {
background-size: cover;
background-position: bottom center;
/* background-image: url(https://images.pexels.com/photos/414612/pexels-photo-414612.jpeg?auto=compress&cs=tinysrgb&w=1200); */
background-image: url(https://images.pexels.com/photos/206359/pexels-photo-206359.jpeg?auto=compress&cs=tinysrgb&w=1200);
/* background-image: url(./res/heqader-pic.jpg); */
/* background-size: contain; */
background-position: top center;
background-repeat: no-repeat;
}
.bg-header-next {
background: rgb(255, 255, 255);
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 60%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
.glass-bg {
background: linear-gradient(225deg,
rgba(255, 255, 255, 0.5) 26%,
rgba(0, 0, 0, 0.1) 74%);
/* background-blend-mode: ; */
/* box-shadow:
inset 0px 5px 5px 0px rgba(255, 255, 255, 0.1),
inset 0px -5px 5px 0px rgba(0, 0, 0, 0.1); */
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
.text-shadow {
text-shadow: 3px 3px 9px #ffffff;
}
#divcontainer p {
margin-bottom: 5px;
}
</style>
<title>Sitemap Generator</title>
</head>
<body class="bg-header">
<header>
<div class="container">
<div class="row">
<div class="col-12 my-5 py-5"></div>
</div>
</div>
</header>
<section class="pb-5 mb-5">
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<div class="card shadow-sm glass-bg w-100 border-0 mt-5">
<div class="card-body px-5">
<div class="mb-3">
<label class="lead text-white form-label fw-bold my-3">Website URL</label>
<input type="url" class="form-control shadow-none mb-4 ps-4" id="site-url"
value="https://nivesguru.in">
</div>
<div class="mb-3">
<button type="button" class="btn btn-light shadow-none" onclick="getUrl()">Sitemap
URL's</button>
<button type="button" class="btn btn-light shadow-none"
onclick="generateSitemap()">Create Sitemap</button>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card mt-5">
<div class="card-body p-0">
<!-- <div id="divcontainer" class="d-block lead fs-6" style="height: 180px; overflow: auto;"></div> -->
<textarea class="form-control shadow-none" id="linksTextarea"
style="height: 208px; overflow: auto;"></textarea>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="bg-dark text-white fixed-bottom mt-5">
<div class="container">
<div class="row">
<div class="col-12">
<p class="text-center pt-3">Designed and Developed by <a class="text-white fw-bold"
href="https://anupammondal.in">Anupam M</a></p>
</div>
</div>
</div>
</footer>
</body>
<script src="sitemap-pages.js"></script>
<script src="create-sitemap.js"></script>
<!-- <script src="file-download.js"></script> -->
</html>