forked from Technigo/project-github-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 978 Bytes
/
index.html
File metadata and controls
35 lines (31 loc) · 978 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">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project GitHub Tracker</title>
<link rel="stylesheet" href="./style.css" />
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script
defer
src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"
integrity="sha384-rOA1PnstxnOBLzCLMcre8ybwbTmemjzdNlILg8O7z1lUkLXozs4DHonlDtnE7fpc"
crossorigin="anonymous">
</script>
</head>
<body>
<header>
<a href="https://github.com/"><i class="fab fa-github fa-3x"></i></a>
</header>
<aside id="profile-info" class="profile"></aside>
<div class="repo-chart">
<canvas id="chart" ></canvas>
</div>
<main id="projects" class="project-container">
<h2>Technigo repositories:</h2>
</main>
<script src="./script.js"></script>
<script src="./chart.js"></script>
</body>
</html>