-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathindex.html
189 lines (171 loc) · 7.57 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/pages/nav/nav.css">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style1.css">
<title>Hacktoberfest 2024</title>
<style>
:root {
--accent-color: #f97316;
}
.heading {
text-align: center;
padding: 1rem 0;
font-size: 2.5rem;
color: #000000;
}
.heading span {
background-color: var(--accent-color);
color: #ffffff;
display: inline-block;
padding: 0.1rem 2rem;
clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}
.content-text {
font-size: 1.25rem;
}
.list-item {
font-size: 1.25rem;
}
</style>
</head>
<body class="bg-gray-100">
<navbar class="flex justify-between items-center p-6 bg-white shadow-lg">
<brand-name class="text-2xl font-bold text-gray-800">Open Source Celebration</brand-name>
<ul id="mobile_ui" class="hidden md:flex space-x-6 text-lg font-medium text-gray-600">
<li class="hover:bg-orange-500 p-2 rounded transition"><a href="/index.html">Home</a></li>
<li class="hover:bg-orange-500 p-2 rounded transition"><a href="src/pages/freshers.html">Fresher</a></li>
<li class="hover:bg-orange-500 p-2 rounded transition"><a href="src/pages/sophomore.html">Sophomore</a></li>
<li class="hover:bg-orange-500 p-2 rounded transition"><a href="src/pages/third-year.html">Third Year</a></li>
<li class="hover:bg-orange-500 p-2 rounded transition"><a href="src/pages/senior.html">Senior</a></li>
</ul>
<ul class="md:hidden flex items-center space-x-4">
<li id="dropdown" class="relative">
<button class="bg-orange-500 text-white p-2 rounded-md">Menu <i class="fa fa-caret-down"></i></button>
<div class="absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg hidden group-hover:block">
<ul class="py-1">
<li class="hover:bg-orange-500 p-2"><a href="/index.html">Home</a></li>
<li class="hover:bg-orange-500 p-2"><a href="src/pages/freshers.html">Fresher</a></li>
<li class="hover:bg-orange-500 p-2"><a href="src/pages/sophomore.html">Sophomore</a></li>
<li class="hover:bg-orange-500 p-2"><a href="src/pages/third-year.html">Third Year</a></li>
<li class="hover:bg-orange-500 p-2"><a href="src/pages/senior.html">Senior</a></li>
</ul>
</div>
</li>
</ul>
</navbar>
<div class="w-full bg-orange-500 h-1"></div>
<div class="container mx-auto py-16 bg-white rounded-lg shadow-lg">
<h1 class="heading">
Welcome to <span>Hacktoberfest 2024</span>
</h1>
<p class="content-text text-center my-6 text-gray-600">
Ready to dive into the world of open source? Join us for an exciting opportunity to contribute, collaborate, and
grow as a developer!
</p>
<div class="text-center">
<button
class="bg-orange-500 text-white rounded-md p-3 font-medium hover:ring-2 hover:ring-black transition shadow hover:shadow-lg">
<a href="https://github.com/aialok/open-source-IIIT-Ranchi" target="_blank">Contribute on Github</a>
</button>
</div>
</div>
<div class="container mx-auto py-8 bg-gray-50 rounded-lg shadow">
<h2 class="heading">
What is <a href="https://hacktoberfest.com/" target="_blank"
class="text-orange-500"><span>Hacktoberfest</span></a>?
</h2>
<h3 class="content-text text-center my-4 text-gray-600">An annual celebration of open source during October. Here’s
what you can do:</h3>
<ul class="content-text mx-auto my-6 list-disc text-gray-600 w-3/4">
<li class="list-item">🌐 Contribute to open source projects.</li>
<li class="list-item">🤝 Collaborate with developers from around the world.</li>
<li class="list-item">🚀 Enhance your coding skills.</li>
</ul>
</div>
<div class="container mx-auto py-8 bg-white rounded-lg shadow">
<h2 class="heading">
How to get <span>started</span>?
</h2>
<ul class="content-text mx-auto my-6 list-disc text-gray-600 w-3/4">
<li class="list-item"><span class="font-semibold">Create Your Portfolio:</span> Build a personal portfolio website
to showcase your skills.</li>
<li class="list-item"><span class="font-semibold">Contribute:</span> Add your portfolio to our repository with a
simple pull request!</li>
<li class="list-item"><span class="font-semibold">Connect:</span> Join our community of students sharing
portfolios.</li>
<li class="list-item"><span class="font-semibold">Celebrate:</span> Be recognized for your hard work and
creativity.</li>
</ul>
</div>
<div class="container mx-auto py-8 bg-gray-50 rounded-lg shadow">
<h2 class="heading">
Featured <span>Portfolios</span>
</h2>
<p class="content-text text-center my-2 text-gray-600">Check out impressive portfolios created by your peers:</p>
<ul class="content-text mx-auto my-6 list-disc text-gray-600 w-3/4 space-y-4">
<li class="bg-white p-4 rounded-lg shadow hover:shadow-md transition">
<a href="src/pages/freshers.html" class="hover:text-orange-500">Fresher</a>
</li>
<li class="bg-white p-4 rounded-lg shadow hover:shadow-md transition">
<a href="src/pages/sophomore.html" class="hover:text-orange-500">Sophomore</a>
</li>
<li class="bg-white p-4 rounded-lg shadow hover:shadow-md transition">
<a href="src/pages/third-year.html" class="hover:text-orange-500">Third Year</a>
</li>
<li class="bg-white p-4 rounded-lg shadow hover:shadow-md transition">
<a href="src/pages/senior.html" class="hover:text-orange-500">Senior</a>
</li>
</ul>
</div>
<div class="container mx-auto py-8 bg-white rounded-lg shadow">
<h2 class="heading">
Join the <span>Celebration</span>
</h2>
<p class="content-text text-center my-2 text-gray-600">Celebrate your achievements and the spirit of Hacktoberfest
2024! Create your portfolio and showcase your work to the world.</p>
</div>
<footer class="bg-gray-800 text-white py-6">
<div class="container mx-auto text-center">
<div class="flex gap-2 justify-center items-center">
<div>
<a href="https://discord.com/invite/hacktoberfest">
<img src="src/assets/icons/discord.svg" class="h-7" alt="">
</a>
</div>
<div>
<a href="https://x.com/hacktoberfest">
<img src="src/assets/icons/x.svg" class="h-6" alt="">
</a>
</div>
<div>
<a href="https://hachyderm.io/@hacktoberfest">
<img src="src/assets/icons/mastodon.svg" class="h-7" alt="">
</a>
</div>
<div>
<a href="https://bsky.app/profile/hacktoberfest.com">
<img src="src/assets/icons/bluesky.svg" class="h-7" alt="">
</a>
</div>
<div>
<a href="https://www.reddit.com/r/hacktoberfest/">
<img src="src/assets/icons/reddit.svg" class="h-7" alt="">
</a>
</div>
<div>
<a href="https://www.digitalocean.com/open-source/hacktoberfest#stay-up-to-date">
<img src="src/assets/icons/gmail.svg" class="h-7" alt="">
</a>
</div>
</div>
<p>© 2024 Hacktoberfest Celebration. All rights reserved.</p>
<p>Empowering Students to Innovate and Contribute to Open Source</p>
<p>Made with ❤️ by the Community</p>
</div>
</footer>
</body>
</html>