-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathindex.html
33 lines (31 loc) · 1.02 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>GitHub Demo | cuHacking</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="A repository where participants of the Git workshop will be able to contribute."
/>
<link rel="icon" href="assets/favicon.ico" />
<link rel="stylesheet" href="css/styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@700&family=Work+Sans&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root">
<!-- cuHacking logo -->
<img id="logo" src="assets/cuHacking-logo.svg" alt="cuHacking" />
<h1>GitHub Demo</h1>
<h2>Behold the list of all who have contributed to this project!</h2>
<p>Total contributors: <span id="count">0</span></p>
<!-- list of names-->
<ul id="names-list"></ul>
<!-- scripts -->
<script type="module" src="js/app.js"></script>
</div>
</body>
</html>