-
Notifications
You must be signed in to change notification settings - Fork 46
/
entry.html
77 lines (73 loc) · 2.06 KB
/
entry.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hacktoberfest 2024</title>
<!-- Bootstrap CSS -->
<link
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<style>
.title {
color: #ff5733;
text-align: center;
font-size: 48px;
font-weight: bold;
margin-top: 50px;
}
.content {
text-align: center;
margin-top: 30px;
}
.contributor-names {
text-align: center;
margin-top: 20px;
font-size: 20px;
color: #333;
}
</style>
</head>
<body>
<div class="container">
<div class="title">Welcome to Hacktoberfest 2024 🎉</div>
<hr />
<div class="content">
<p>
<b>
Hacktoberfest is an annual, month-long celebration of open source.
It encourages developers, both beginners and professionals, to
contribute to open-source repositories, learn new skills, and
collaborate on projects. It’s a great way to get started with open
source, grow your programming skills, and give back to the
community! Join us by contributing to this repository and make your
mark in the world of open-source! 🚀
</b>
</p>
</div>
<br />
<hr />
<div class="contributor-names">
<!-- Append your name below in betn <h4>..</h4> tag -->
<h3>Contributors:</h3>
<hr />
<h4>GeekGiggle❤️</h4>
<h4>Jash🌟</h4>
<h4>Tiwari-Ankush❤️</h4>
<h4>Shivani Nikam✨</h4>
<h4>ekramzafar</h4>
<h4>Parthib Sarkar❤️</h4>
<h4>Shreya</h4>
<h4>Pranay-Gedam</h4>
<h4>swadeep patil❤️</h4>
<h4>Swaroop Vyawahare</h4>
<h4>Taiwo Ayomide</h4>
</div>
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>