-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (50 loc) · 1.94 KB
/
index.html
File metadata and controls
56 lines (50 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AlphaByte - Hacktoberfest 2020</title>
<!-- ICONS -->
<link rel="apple-touch-icon" sizes="180x180" href="img/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/icons/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- STYLESHEETS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w==" crossorigin="anonymous" />
<link rel="stylesheet" href="css/index.css">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css2?family=Caveat&family=Inter:wght@300;400;500;700;900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="heading">
<div class="logo-hf">
<a href="http://hacktoberfest.digitalocean.com/" target="_blank"><img src="img/hf_logo.svg" alt="Hacktoberfest logo"></a>
</div>
</div>
</header>
<main>
<div class="quote">
"I contributed!"
</div>
<div class="container">
<div class="container-inner">
<div id="participants">
<!-- participants data -->
</div>
<img id="iconPR" class="icon" src="img/images/Picture1.png" alt="PR icon">
<img id="iconBranch" class="icon" src="img/images/Picture2.png" alt="Branch icon">
<img id="iconCommit" class="icon" src="img/images/Picture3.png" alt="Commit icon">
</div>
</div>
</main>
<footer>
<div class="logo-alphabyte">
<img src="img/AlphaByte-white.png" alt="AlphaByte logo">
</div>
</footer>
<!-- SCRIPTS -->
<script src="js/participants.js"></script>
<script src="js/index.js"></script>
</body>
</html>