-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub_calendar.html
35 lines (26 loc) · 1.2 KB
/
github_calendar.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
<!DOCTYPE html>
<html>
<head>
<!-- The title of the web page -->
<title>Calendar</title>
<!-- Loading the Javascript file -->
<script type="text/javascript" src="save_data.js" ></script>
<!-- Using Bootstrap CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body style="background-color: black;color: #ededed;">
<!-- The Uername of the Github-ID -->
<h1 style="text-align: center;" id="gitname">@sagar-sehgal</h1>
<!-- Getting the Github Calendar -->
<img src="http://ghchart.rshah.org/sagar-sehgal" alt="Sagar-Sehgal's Github chart" style="width: 100%;margin: 10% 0%;" id="gitimage"/>
<!-- Input box to enter the github id -->
<center>
<div class="input-group mb-3" style="width: 50vw;">
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon1">@</span>
</div>
<input type="text" class="form-control" placeholder="github-username" aria-label="Username" aria-describedby="basic-addon1" name="github_id" id="gitid">
</div>
</center>
</body>
</html>