-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>30 days GithubContributionCalendar</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="calender">
<p class="port-text"> My Github contributionCalendar for the month </p>
<center>
<div class="calendar-container">
<div id="days-of-week" class="days-of-week"></div>
<div id="calendar-grid" class="calendar-grid"></div>
<div class="legend">
less
<div class="legend-item low" title="Low contributions"></div>
<div class="legend-item medium" title="Medium contributions"></div>
<div class="legend-item high" title="High contributions"></div>
<div class="legend-item very-high" title="Very high contributions"></div>
more
</div>
</div>
</center>
</div>
<br><br><br>
<script src="index.js"></script>
</body>
</html>