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
89 lines (81 loc) · 2.59 KB
/
Copy pathindex.html
File metadata and controls
89 lines (81 loc) · 2.59 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
82
83
84
85
86
87
88
89
<!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>
</head>
<body>
<nav>
<!-- mobile nav -->
<div class="nav-mobile">
<img
id="nav-sub"
class="nav-menu"
src="images/menu (1).png"
alt="menu"
/>
<div class="nav-links">
<input
id="navInputMobile"
class="nav-input"
type="text"
placeholder="Search"
/>
<a href="#">Pulls</a>
<a href="#">Issues</a>
<a href="#">Marketplace</a>
<a href="#">Explore</a>
</div>
<a class="nav-icon" href="https://github.com/" target="_blank"
><img src="images/GitHub-Mark-Light-32px.png" alt="github"
/></a>
<button id="btn-light-nav">
<img class="nav-notif" src="images/notification.png" alt="bell" />
</button>
</div>
<!-- desktop nav -->
<div class="nav-desktop">
<a class="nav-icon" href="https://github.com/" target="_blank"
><img
id="nav-github-img"
src="images/GitHub-Mark-Light-32px.png"
alt="github"
/></a>
<input
id="navInput"
class="nav-input"
type="text"
placeholder="Search"
/>
<div class="nav-a">
<a href="#">Pulls</a>
<a href="#">Issues</a>
<a href="#">Marketplace</a>
<a href="#">Explore</a>
</div>
<button id="btn-light">
<img class="nav-notif" src="images/notification.png" alt="bell" />
</button>
</div>
</nav>
<!-- main content -->
<main>
<!-- where the user info is -->
<section id="userInfo"></section>
<!-- where the repos are -->
<section id="projects">
<h2 class="project-title">My Project Repositories with Technigo</h2>
<div id="project-box"></div>
</section>
</main>
<!-- This will be used to draw the chart 👇 -->
<section class="canvas-box"><canvas id="chart"></canvas></section>
<footer><img src="images/mylogo.png" alt="logo" /></footer>
<script src="./script.js"></script>
<script src="./chart.js"></script>
</body>
</html>