-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfetch.html
More file actions
35 lines (33 loc) · 898 Bytes
/
fetch.html
File metadata and controls
35 lines (33 loc) · 898 Bytes
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 lang="en">
<body>
<header class="header">
<h1>See Ira's 10 most recent pushes to GitHub</h1>
<button class="get">Click Here</button>
<button onclick="window.dialog.showModal();" class="get">show contribution graph</button>
</header>
<main>
<h1>Newest to Oldest</h1>
<ol>
</ol>
<dialog id="dialog">
<div class="main">
<h3>GitHub Contribution Graph Preview</h3>
<div id="gh">
</div>
<h5>Made by <a href="https://github.com/lengthylyova">lengthylyova</a></h5>
</div>
<form method="dialog">
<button class="get">Close</button>
</form>
</dialog>
</main>
<script src="js/keys.js"></script>
<script src="js/fetch.js"></script>
</body>
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="css/fetch.css">
</head>
</html>