-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.html
42 lines (38 loc) · 1.23 KB
/
github.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Calendar</title>
<link rel="stylesheet" href="https://unpkg.com/github-calendar/dist/github-calendar-responsive.css">
<link rel="stylesheet" href="https://unpkg.com/github-calendar/dist/github-calendar.css">
<link rel="stylesheet" href="assets/css/styles.css">
<style>
.project-heading {
text-align: center;
padding-bottom: 20px;
}
</style>
</head>
<body>
<div style="display: flex; justify-content: center; padding-bottom: 10px;">
<h1 class="project-heading">The Days I <strong>Code</strong></h1>
</div>
<div id="github-calendar" style="display: flex; justify-content: center;"></div>
<script src="https://unpkg.com/github-calendar@latest/dist/github-calendar.min.js"></script>
<script>
// Initialize GitHub Calendar
GitHubCalendar("#github-calendar", "nirek13", {
responsive: true,
global_stats: false,
tooltips: true,
blockSize: 14,
blockRadius: 7,
blockMargin: 5,
color: "#4b8bd5",
theme: "nireks",
fontSize: 16
});
</script>
</body>
</html>