-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathindex.html
48 lines (36 loc) · 1.54 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Raleway&display=swap" rel="stylesheet">
<!-- Manifest.json -->
<meta property="og:title" content="My First Open-Source Contribution">
<meta property="og:description" content="Make your first Open-Source contribution here">
<meta property="og:image" content="./images/githubIcon.png">
<meta property="og:url" content="https://jhamadhav.com/myFirstOpenSourceContribution">
<!-- Main Link Tags -->
<link href="./images/githubIcon.png"" rel=" icon" type="image/png" sizes="16x16">
<link href="./images/githubIcon.png"" rel=" icon" type="image/png" sizes="32x32">
<title>My First Open-Source Contribution</title>
<link rel="stylesheet" href="./styles/main.min.css">
</head>
<body>
<div id="logo">
<img src="./images/githubIcon.png" alt="Github Icon">
</div>
<h1>Contribution Board</h1>
<table>
<!-- your content here -->
</table>
<div class="illustration">
<img src="./images/devImage.svg" alt="dev illustration">
</div>
<!-- script -->
<script src="./scripts/contributorList.js"></script>
<script src="./scripts/main.js"></script>
</body>
</html>