-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (47 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CLSCY2Y3GX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CLSCY2Y3GX');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap">
<link rel="stylesheet" href="style.css">
<title>HACKTOSPOT</title>
</head>
<body>
<header>
<div class="header-left">
<h1>HACKTOSPOT</h1>
<p>let's celebrate open source together!</p>
</div>
<div class="header-right">
</p>By Chirag Arora :</p>
<a href="https://github.com/chirag8023" target="_blank"><img src="github.svg"></a>
<a href="https://x.com/Chirag8023" target="_blank"><img src="x.svg"></a>
</div>
</header>
<div class="bill">
<div class="bar">
<div class="tab-bar">
<button class="tab-button" onclick="loadData('projects')">Projects</button>
<button class="tab-button active" onclick="loadData('events')">Events</button>
<button class="tab-button" onclick="loadData('challenges')">Challenges</button>
</div>
<div class="add">
<a href="https://github.com/Chirag8023/hacktospot/issues/new/choose"><button class="add-button">+ Add</button></a>
</div>
</div>
<div id="data-table" class="table-content">
<!-- Table will be loaded dynamically here -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>