-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
44 lines (40 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GDSC | ASIET</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<body onload="getData()">
<div class="ani-text">
<p class="top-heading">
<span>
30 Days of Google Cloud | ASIET
</span>
</p>
</div>
<div class="header-subtitle">
<a href="https://www.linkedin.com/in/harshitkumar197/" rel="noopener" target="_blank"> Made with <span style="color:#e25555" > ♥ </span> By HK </a>
<p class="u-text--right">Auto update every hour</p>
</div>
<div class="l-wrapper">
<div class="c-card">
<div class="c-card__body">
<ul class="c-list" id="list">
<li class="c-list__item">
<div class="c-list__grid">
<div class="u-text--left">Rank</div>
<div class="u-text--center">Name</div>
<div class="u-text--right"># of Quests</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<script src="assets/js/index.js"></script>
</body>
</html>