forked from ankiiitraj/HacktoberFest-IIITR
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
76 lines (68 loc) · 3.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
<!--BOOM!, we welcome you to celebrate Open Source with us in this festival called "Hacktober Fest"-->
<!--Just follow these quick steps, to get started on the journey of getting cool swags and a lot of learning opportunities!!-->
<HTML style="scroll-behavior: smooth;">
<head>
<link rel="stylesheet" href="assets/looks.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link href="https://fonts.googleapis.com/css?family=Space+Mono&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:100&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<TITLE>A simple list</TITLE>
</head>
<body>
<div class="main">
<div class="bg2"></div>
<div class="bg1"></div>
<div class="containLogo"><a href="/"><img src="assets/img/logo.svg" class="logo"></img></a></div>
<div class="about">
<h1 style="margin: 0;">Here's the list of all the geeks who are attending HacktoberFest at<br><span style="color: yellow;"> IIIT Ranchi</span> </h1>
</div>
</div>
<!--Step 1 - Change the text inside <div> tags-->
<div id="container">
<!-- !!! Copy the div below !!! -->
<div class="wrapper" data-aos="fade-up">
<h1>Ankit Raj</h1> <!--Change the name to YOUR NAME-->
<p>I'm a Tech Enthasuiast! I love WebDev and Open Source. I do Competitive Coding as a Sport.</p> <!--Tell us ABOUT YOURSELF-->
</div>
<!-- !!! Paste Your Div Just Above !!! -->
<div class="wrapper" data-aos="fade-up">
<h1>Vishal Pratap Singh</h1>
<p>I'm a Tech Enthasuiast! I love WebDev and Open Source. I do Competitive Coding as a Sport.</p>
</div>
<div class="wrapper" data-aos="fade-up">
<h1>Sanskar Seth</h1>
<p>I'm a Tech Enthasuiast! I love WebDev and Open Source. I do Competitive Coding as a Sport.</p>
</div>
<div class="wrapper" data-aos="fade-up" >
<h1>Akash Anand</h1>
<p>I'm a Tech Enthasuiast! I love WebDev and Open Source. I do Competitive Coding as a Sport.</p>
</div>
<div class="wrapper" data-aos="fade-up">
<h1>Sambit Ekka</h1>
<p>I'm a Tech Enthasuiast! I love WebDev and Open Source. I do Competitive Coding as a Sport.</p>
</div>
<div class="wrapper" data-aos="fade-up">
<h1>Prateek Ranjan</h1>
<p>I'm a passionate learner.I love programming. I am learning WebDev and open Source.</p>
</div>
<div class="wrapper">
<h1>Kumar Kush</h1> <!--Enter Your Name-->
<div class="wrapper" data-aos="fade-up">
<h1>Kumar Kush</h1>
<p>I'm a competent programmer. I also have a hunger for learning WebDev and OpenSource.</p> <!--Write something about yourslf-->
</div>
<div class="wrapper" data-aos="fade-up">
<h1>Satyam Mishra</h1>
<p>I'm a passionate learner.I love programming. I am learning WebDev and open Source.</p>
</div>
</div><!--Step 2 - If you are already into web development, go to the "Some Advance Stuff" folder and make it more advanced-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 120,
duration: 1000,
});
</script>
</body>
</HTML>