-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (94 loc) · 2.59 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<script src="./script.js"></script>
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css"
/>
<title>Quick Gita</title>
</head>
<body>
<div class="container">
<!-- <div class="sun">
<div class="ray_box">
<div class="ray ray1"></div>
<div class="ray ray2"></div>
<div class="ray ray3"></div>
<div class="ray ray4"></div>
<div class="ray ray5"></div>
<div class="ray ray6"></div>
<div class="ray ray7"></div>
<div class="ray ray8"></div>
<div class="ray ray9"></div>
<div class="ray ray10"></div>
</div>
</div> -->
<h1>Quick Gita</h1>
<form>
<input
type="text"
placeholder="Enter chapter no. ..."
id="chapterNo"
value="18"
/>
<input type="checkbox" id="trailingChapters" checked />
<label for="trailingChapters">Get trailing chapters?</label>
<input type="submit" value="Submit" id="submit" />
</form>
<div id="gita-chapter-result"></div>
<footer>
<div class="contact">
<span
>Have a feature request or want me to make something for you?
</span>
<a
href="mailto:[email protected]?subject=From%20Tratus "
target="_blank"
rel="noopener noreferrer"
class="mail"
>Contact me</a
>
</div>
<div
class="tag"
style="
max-width: 46px;
bottom: 0;
left: 50%;
transform: translateX(-50%);
"
>
<a
href="https://linktr.ee/lucifer9199"
target="_blank"
rel="noopener noreferrer"
>
<img
class="tag-img"
src="./assets/tag_light.svg"
alt="tag"
style="width: 50px; height: 50px"
/>
</a>
</div>
</footer>
</div>
<script>
document
.getElementById("submit")
.addEventListener("click", function (event) {
event.preventDefault();
validateChapterNumber();
});
</script>
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/toastify-js"
></script>
</body>
</html>