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
81 lines (74 loc) · 2.27 KB
/
index.html
File metadata and controls
81 lines (74 loc) · 2.27 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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" />
<!-- Facebook Meta Tags -->
<meta
property="og:url"
content="https://github-tracker-fatima.netlify.app/"
/>
<meta property="og:type" content="website" />
<meta
property="og:title"
content="GitHub-tracker - Technigo project by Fatima Gamero Romero"
/>
<meta
property="og:description"
content="GitHub-tracker from my projects from Technigo"
/>
<meta
property="og:image"
content="https://github-tracker-fatima.netlify.app/assets/background.png"
/>
<!--ICON-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-1/css/all.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@600&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400&family=Yanone+Kaffeesatz:wght@600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
<title>Project GitHub Tracker</title>
<!--Chart-->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<header class="header">
<i class="fab fa-github"></i>
<h1 class="heading-one">
GitHub <br/><span class="tracker">Tracker</span>
</h1>
<div class="burger">
<div></div>
<div></div>
<div></div>
</div>
</header>
<section id="profile" class="profile-section"></section>
<main class="main">
<h2 class="heading-two">My Projects</h2>
<section id="projects" class="projects-container"></section>
<section class="chart">
<canvas id="chart" class="myChart"></canvas>
</section>
</main>
<footer class="footer">
<div class="icon-footer">
<i class="fab fa-github orange-icon"></i>
<p class="copyright">
Copyright @2021 | Designed by Fatima Gamero Romero
</p>
</div>
</footer>
<script src="./script.js"></script>
<script src="./chart.js"></script>
</body>
</html>