forked from Arunjay126/Hacktoberfest-21
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (101 loc) · 3.93 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!doctype html>
<html>
<head>
<link rel="icon" type="image/png" href="HacktoberFestShortLogo.svg"/>
<title>Hacktoberfest-21</title>
<meta name="description" content="Our first page">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="html tutorial template">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/js/fontawesome.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link href="home.css" rel="stylesheet" />
</head>
<body >
<div class="header">
<nav class="navbar navbar-light bg-light ">
<a class="navbar-brand px-4" href="#">
<div class="row">
<div class="col">
<img src="./HacktoberFestShortLogo.svg" width="40" height="40" alt="">
</div>
<div class="col align-items-center nav-head">
Hacktoberfest-21
</div>
</div>
</a>
<a class="navbar-text mx-4" onclick="smoothScroll(document.getElementById('contributors'))">Contributors</a>
</nav>
</div>
<div class="main">
<div class="hacktoberfest">
<img src="HacktoberfestLogo.svg" / height="550px" width="550px">
</div>
</div>
<div class=" d-flex flex-column contributors justify-content-center" id="contributors">
<div class=" px-5 py-3 m-3 card fs-3 text-center"> Contributors List 🌎</div>
<div class="container"><div class="row row-cols-1 row-cols-md-3 g-4 " id="list">
<!-- cards here -->
</div></div>
</div>
<div class="footer">
<footer class="footer">
<div class="col justify-content-md-center text-white bg-dark pl-5 pr-5 pt-3 pb-5 mt-3 card fs-4 text-center ">
<div class="row align-items-center">
<div class="col-sm-6 align-items-center">
<img src="HacktoberfestLogo.svg" / height="200px">
</div>
<div class="col-sm-6 pb-5">
<div class="text-white p-1 text-center footer-heading">
Contribute on.
</div>
<div class="row justify-content-center">
<div class="col footer-icon">
<a class="text-white" href="https://github.com/hkaur008/Hacktoberfest-21">
<i class="fab fa-github"></i>
<div class="footer-icon-name">
github
</div>
</a>
</div>
</div>
<div class="text-white pt-2 pb-1 text-center footer-heading">
Follow us on.
</div>
<div class="row">
<div class="col">
<div class="footer-icon">
<i class="fab fa-facebook"></i>
</div>
<div class="footer-icon-name">
facebook
</div>
</div>
<div class="col">
<div class="footer-icon">
<i class="fab fa-linkedin"></i>
</div>
<div class="footer-icon-name">
Linkedin
</div>
</div>
<div class="col">
<div class="footer-icon">
<i class="fab fa-instagram"></i>
</div>
<div class="footer-icon-name">
Instagram
</div>
</div>
</div>
</div>
</div>
<div>
Show some ❤ by contributing !! © 2021, All Rights Reserved</div>
</div>
</footer>
</div>
<script src="script.js"> </script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script>
</body>
</html>