forked from dahighsky/HacktoberFest2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (91 loc) · 5.1 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
114
<!--
The following is the source code for the Hactober fest contributions platform.
Follow the instructions available in the readme file to make your contributions. Avoid making any unneecessary changes to the codebase.
DO NOT edit any links other than the profile image url and the CSS file.
-->
<!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="stylesheet" href="style.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>AIT OSS Hacktober Fest 2022</title>
</head>
<body>
<section class="team text-center py-5">
<div class="container">
<div class="header my-5">
<h1>Welcome to Hacktoberfest 2022</h1>
<p class="text-muted">Generate your pull request as fast as possible</p>
</div>
<div class=" row d-flex justify-content-between align-items-center flex-wrap">
<!--
Below is the skeleton for your profile card and change your name, designation and edit picture URL.
Copy the template and paste it at the last position. Then, commit, push, create pull request.
<div class="col-md-6 col-lg-3">
<div class="img-block mb-5">
<img src="https://github.com/_____githubusername________.png" class="img-fluid img-thumbnail rounded-circle" alt="image1">
<div class="content mt-2">
<h4>_____________</h4>
<p class="text-muted">_________________</p>
</div>
</div>
</div>
-->
<div class="col-md-6 col-lg-3">
<div class="img-block mb-5">
<img src="https://github.com/dahighsky.png" class="img-fluid img-thumbnail rounded-circle" alt="image1">
<div class="content mt-2">
<h4>Aakash Sharma</h4>
<p class="text-muted">Web Developer</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ">
<div class="img-block mb-5">
<img src="https://github.com/Harshal141.png" class="img-fluid img-thumbnail rounded-circle" alt="image1">
<div class="content mt-2">
<h4>Harshal Patil</h4>
<p class="text-muted">Web Dev</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ">
<div class="img-block mb-5">
<img src="https://avatars.githubusercontent.com/u/93818165?v=4" class="img-fluid img-thumbnail rounded-circle" alt="image1">
<div class="content mt-2">
<h4>Sagun Chauhan</h4>
<p class="text-muted">Blockchain</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ">
<div class="img-block mb-5">
<img src="https://github.com/fosterer.png" class="img-fluid img-thumbnail rounded-circle" alt="image1">
<div class="content mt-2">
<h4>Aishwarya Upadhyay</h4>
<p class="text-muted">Android Developer</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="img-block mb-5">
<img src="https://i.ibb.co/wWZ5dp0/asmita.jpg" class="img-fluid img-thumbnail rounded-circle" alt="Asmita img">
<div class="content mt-2">
<h4>Asmita Tripathi</h4>
<p class="text-muted">Graphic Designer</p>
</div>
</div>
</div>
<!-- Paste your template above this comment this -->
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>