Skip to content

Commit 8241fb6

Browse files
authored
Create index.html
1 parent b3d21d8 commit 8241fb6

File tree

1 file changed

+283
-0
lines changed

1 file changed

+283
-0
lines changed

buildathon/index.html

Lines changed: 283 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,283 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>BUILDATHON 2026</title>
7+
<style>
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
box-sizing: border-box;
12+
}
13+
14+
body {
15+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
16+
background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
17+
color: #fff;
18+
padding: 20px;
19+
overflow-x: hidden;
20+
}
21+
22+
.widget {
23+
max-width: 800px;
24+
margin: 0 auto;
25+
background: rgba(255, 255, 255, 0.05);
26+
backdrop-filter: blur(10px);
27+
border: 2px solid rgba(79, 195, 247, 0.3);
28+
border-radius: 15px;
29+
padding: 25px;
30+
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
31+
}
32+
33+
.header {
34+
text-align: center;
35+
margin-bottom: 20px;
36+
}
37+
38+
.brand {
39+
font-size: 0.9rem;
40+
color: #4fc3f7;
41+
font-weight: 600;
42+
margin-bottom: 8px;
43+
}
44+
45+
.title {
46+
font-size: 2rem;
47+
font-weight: 800;
48+
background: linear-gradient(90deg, #fff 0%, #4fc3f7 100%);
49+
-webkit-background-clip: text;
50+
-webkit-text-fill-color: transparent;
51+
background-clip: text;
52+
margin-bottom: 15px;
53+
letter-spacing: 1px;
54+
}
55+
56+
.event-info {
57+
display: flex;
58+
justify-content: center;
59+
gap: 15px;
60+
flex-wrap: wrap;
61+
margin-bottom: 20px;
62+
}
63+
64+
.info-badge {
65+
display: inline-flex;
66+
align-items: center;
67+
gap: 5px;
68+
padding: 6px 12px;
69+
background: rgba(79, 195, 247, 0.15);
70+
border: 1px solid rgba(79, 195, 247, 0.4);
71+
border-radius: 20px;
72+
font-size: 0.85rem;
73+
color: #4fc3f7;
74+
font-weight: 600;
75+
}
76+
77+
.prize {
78+
text-align: center;
79+
font-size: 1.8rem;
80+
font-weight: 900;
81+
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
82+
-webkit-background-clip: text;
83+
-webkit-text-fill-color: transparent;
84+
background-clip: text;
85+
margin: 15px 0;
86+
}
87+
88+
.details-grid {
89+
display: grid;
90+
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
91+
gap: 12px;
92+
margin: 20px 0;
93+
}
94+
95+
.detail-item {
96+
text-align: center;
97+
padding: 12px;
98+
background: rgba(255, 255, 255, 0.03);
99+
border-radius: 10px;
100+
border: 1px solid rgba(79, 195, 247, 0.2);
101+
}
102+
103+
.detail-icon {
104+
font-size: 1.5rem;
105+
margin-bottom: 5px;
106+
}
107+
108+
.detail-label {
109+
font-size: 0.75rem;
110+
color: #b0bec5;
111+
margin-bottom: 3px;
112+
}
113+
114+
.detail-value {
115+
font-size: 0.95rem;
116+
font-weight: 700;
117+
color: #4fc3f7;
118+
}
119+
120+
.highlights {
121+
margin: 20px 0;
122+
}
123+
124+
.highlights-title {
125+
font-size: 1.1rem;
126+
font-weight: 700;
127+
margin-bottom: 12px;
128+
text-align: center;
129+
color: #ff6b9d;
130+
}
131+
132+
.highlights-list {
133+
display: grid;
134+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
135+
gap: 10px;
136+
}
137+
138+
.highlight {
139+
display: flex;
140+
align-items: center;
141+
gap: 8px;
142+
font-size: 0.85rem;
143+
padding: 8px;
144+
background: rgba(79, 195, 247, 0.05);
145+
border-radius: 8px;
146+
}
147+
148+
.highlight-icon {
149+
font-size: 1.1rem;
150+
min-width: 20px;
151+
}
152+
153+
.cta {
154+
text-align: center;
155+
margin-top: 20px;
156+
}
157+
158+
.register-btn {
159+
display: inline-block;
160+
padding: 14px 40px;
161+
font-size: 1.1rem;
162+
font-weight: 700;
163+
text-decoration: none;
164+
color: #fff;
165+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
166+
border-radius: 30px;
167+
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
168+
transition: transform 0.3s, box-shadow 0.3s;
169+
text-transform: uppercase;
170+
letter-spacing: 1px;
171+
}
172+
173+
.register-btn:hover {
174+
transform: translateY(-2px);
175+
box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
176+
}
177+
178+
.footer {
179+
text-align: center;
180+
margin-top: 15px;
181+
padding-top: 15px;
182+
border-top: 1px solid rgba(79, 195, 247, 0.2);
183+
font-size: 0.8rem;
184+
color: #b0bec5;
185+
}
186+
187+
@media (max-width: 600px) {
188+
body {
189+
padding: 10px;
190+
}
191+
192+
.widget {
193+
padding: 15px;
194+
}
195+
196+
.title {
197+
font-size: 1.5rem;
198+
}
199+
200+
.prize {
201+
font-size: 1.4rem;
202+
}
203+
204+
.details-grid {
205+
grid-template-columns: 1fr 1fr;
206+
}
207+
208+
.highlights-list {
209+
grid-template-columns: 1fr;
210+
}
211+
}
212+
</style>
213+
</head>
214+
<body>
215+
<div class="widget">
216+
<div class="header">
217+
<div class="brand">BuildForStudents Presents</div>
218+
<h1 class="title">BUILDATHON 2026</h1>
219+
<div class="event-info">
220+
<span class="info-badge">💻 Virtual Hackathon</span>
221+
<span class="info-badge">🇮🇳 All India</span>
222+
</div>
223+
</div>
224+
225+
<div class="prize">💰 Prize Pool: ₹30,000+</div>
226+
227+
<div class="details-grid">
228+
<div class="detail-item">
229+
<div class="detail-icon">📅</div>
230+
<div class="detail-label">Date</div>
231+
<div class="detail-value">06-07 March</div>
232+
</div>
233+
<div class="detail-item">
234+
<div class="detail-icon">⏱️</div>
235+
<div class="detail-label">Duration</div>
236+
<div class="detail-value">24 Hours</div>
237+
</div>
238+
<div class="detail-item">
239+
<div class="detail-icon">👥</div>
240+
<div class="detail-label">Team Size</div>
241+
<div class="detail-value">1-4 Members</div>
242+
</div>
243+
<div class="detail-item">
244+
<div class="detail-icon">🎓</div>
245+
<div class="detail-label">Certificates</div>
246+
<div class="detail-value">All Participants</div>
247+
</div>
248+
</div>
249+
250+
<div class="highlights">
251+
<div class="highlights-title">🔥 Why Join?</div>
252+
<div class="highlights-list">
253+
<div class="highlight">
254+
<span class="highlight-icon">🚀</span>
255+
<span>Industry-level exposure</span>
256+
</div>
257+
<div class="highlight">
258+
<span class="highlight-icon">👨‍🏫</span>
259+
<span>Expert mentorship</span>
260+
</div>
261+
<div class="highlight">
262+
<span class="highlight-icon">💡</span>
263+
<span>Build real projects</span>
264+
</div>
265+
<div class="highlight">
266+
<span class="highlight-icon">💼</span>
267+
<span>Internship opportunities</span>
268+
</div>
269+
</div>
270+
</div>
271+
272+
<div class="cta">
273+
<a href="https://hackathon.techfests.site" target="_blank" class="register-btn">
274+
Register Now 🚀
275+
</a>
276+
</div>
277+
278+
<div class="footer">
279+
Follow us: @BuildForStudents.in
280+
</div>
281+
</div>
282+
</body>
283+
</html>

0 commit comments

Comments
 (0)