-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 780 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 780 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Project GitHub Tracker</title>
<link href="./style.css" rel="stylesheet">
</head>
<body>
<h1>GitHub Tracker</h1>
<div class="intro">
<img class="picture" id="avatar">
<section class="userinfo" id="userinfo"></section>
</div>
<h1>Projects:</h1>
<main class="projects" id="projects"></main>
<canvas class="chart" id="chart"></canvas>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="./secret.js"></script>
<script src="./script.js"></script>
<script src="./chart.js"></script>
</body>
</html>