-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
60 lines (56 loc) · 2.69 KB
/
dashboard.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
<!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="Welcome to the ISRO Launches website created & designed by of Vishal Vishwakarma (@iamvisshu)">
<meta name="author" content="@iamvisshu">
<title>ISRO Launches Statistics Dashboard</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<link rel="stylesheet" href="css/style.css">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://iamvisshu.github.io/">
<meta property="og:title" content="ISRO Launches Dashboard Created by Vishal">
<meta property="og:description" content="Welcome to the ISRO Launches website created & designed by of Vishal Vishwakarma (@iamvisshu)">
<meta property="og:image" content="https://iamvisshu.github.io/ISRO_Launches_API/images/avatar.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://iamvisshu.github.io/">
<meta property="twitter:title" content="ISRO Launches Dashboard">
<meta property="twitter:description" content="Welcome to the ISRO Launches website created & designed by of Vishal Vishwakarma (@iamvisshu)">
<meta property="twitter:image" content="https://iamvisshu.github.io/ISRO_Launches_API/images/avatar.jpg">
</head>
<body>
<div class="container">
<h1>ISRO Launches 🚀 Dashboard</h1>
<h3>Designed by @iamvisshu</h3>
<div class="navigation">
<div class="nav-left">
<div class="hamburger" id="hamburger">
<div></div>
<div></div>
<div></div>
</div>
<div class="nav-buttons" id="nav-buttons">
<button id="home-button">Homepage</button>
<button id="aboutMe-button">AboutMe</button>
</div>
</div>
<div class="search-container">
<input type="text" id="search-input" placeholder="Search anything...">
<button id="search-button">Search</button>
</div>
</div>
<div id="loading-spinner" class="spinner" style="display: none;"></div> <!-- Loading spinner -->
<div id="stats"></div>
<div id="error-message" style="color: red;"></div>
</div>
<footer>
<p>© <span id="year"></span> Created With ❤️ By <a href="https://github.com/iamvisshu" target="_blank">@iamvisshu</a></p>
</footer>
<script src="js/api.js"></script>
<script src="js/script.js"></script>
</body>
</html>