-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (50 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bhagavad Gita</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="https://www.kunalkcube.tech/tests/new/proimages/favicon.png">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header class="header">
<nav class="navbar">
<div class="logo">
<span>Bhagavad Gita</span>
</div>
<div class="theme">
<i id="themeToggle" class='bx bx-moon'></i>
</div>
</nav>
</header>
<section class="home">
<div class="sub_sec_one">
</div>
<div class="sub_sec_two">
<button id="prevButton" onclick="loadData(-1)">Prev</button>
<button id="nextButton" onclick="loadData(1)">Next</button>
</div>
<div class="sub_sec_three">
</div>
</section>
<div id="myModal" class="modal-content">
<span class="close"><i class='bx bx-x'></i></span>
<div id="modalContent"></div>
</div>
<div id="apiKeyModal" class="modal">
<div class="api-modal-content">
<span class="api-close"><i class='bx bx-x'></i></span>
<h2>Enter Your API Key</h2>
<input type="text" id="apiKeyInput" placeholder="Your API Key">
<button id="apiKeySubmit">Submit</button>
<p>Generate your own API Key from Rapid API Key and after submitting the Key, please refresh the page <a
href="https://rapidapi.com/bhagavad-gita-bhagavad-gita-default/api/bhagavad-gita3"><i
class='bx bx-link'></i></a></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>