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
42 lines (38 loc) · 1.34 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.34 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
<!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>GitHub Tracker</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
rel="stylesheet">
<link rel="stylesheet" href="./src/stylesheets/repos.css" />
<link rel="stylesheet" href="./src/stylesheets/style.css" />
</head>
<body>
<header id="header" class="header"></header>
<main class="body-wrapper">
<aside class="aside" id="aside"></aside>
<section class="projects" id="projects">
<div class="html-links">
<a href="index.html" class="links bold-link">
<img src="./images/book.png" class="icons" alt="book icon"/> Repositories
</a>
<a href="commits.html" class="links">
<img src="./images/box.png" class="icons" alt="box icon"> Contributions
</a>
</div>
<hr>
</section>
</main>
<hr>
<footer id="footer" class="footer footer-flex"></footer>
<script src="./src/javascript/config.js"></script>
<script src="./src/javascript/index.js"></script>
<script src="./src/javascript/repos.js"></script>
</body>
</html>