Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 94 additions & 0 deletions Sanjana_Joseph/hs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HackSphere 2025</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gradient-to-br from-blue-950 to-indigo-900 text-white font-sans">

<!-- 🔥 Hero Section -->
<section class="flex flex-col items-center justify-center text-center py-24 px-6">
<h1 class="text-5xl md:text-6xl font-bold mb-4">HackSphere 2025</h1>
<p class="text-2xl md:text-3xl font-medium mb-6">Code. Create. Conquer.</p>
<p class="text-lg mb-8">June 20–22, 2025 – Online</p>
<a href="#register" class="bg-purple-600 hover:bg-purple-700 text-white text-lg px-6 py-3 rounded-xl shadow-lg transition duration-300">
Register Now
</a>
</section>

<!-- ℹ️ About Section -->
<section class="bg-white text-gray-800 py-16 px-8 text-center">
<h2 class="text-3xl font-semibold mb-6">About HackSphere</h2>
<p class="max-w-3xl mx-auto mb-4 text-lg">
HackSphere 2025 is a 48-hour global hackathon where innovation meets collaboration.
Open to developers, designers, and creators of all levels, HackSphere is your chance to build, learn, and connect.
</p>
<p class="max-w-3xl mx-auto text-lg">
Expect workshops, mentorship, exciting prizes, and a vibrant global tech community—right from the comfort of your home.
</p>
</section>

<!-- ⏰ Schedule Section -->
<section class="bg-indigo-800 text-white py-16 px-8 text-center">
<h2 class="text-3xl font-semibold mb-10">Event Schedule</h2>
<div class="max-w-4xl mx-auto space-y-6">
<div>
<p class="text-xl font-bold">🗓️ Day 1 - June 20</p>
<p>Kickoff Ceremony, Team Formation, and Ideation</p>
</div>
<div>
<p class="text-xl font-bold">🛠️ Day 2 - June 21</p>
<p>Building, Mentorship Sessions, Workshops</p>
</div>
<div>
<p class="text-xl font-bold">🚀 Day 3 - June 22</p>
<p>Final Submissions, Judging, Closing Ceremony</p>
</div>
</div>
</section>

<!-- ❓ FAQ Section -->
<section class="bg-white text-gray-800 py-16 px-8 text-center">
<h2 class="text-3xl font-semibold mb-10">Frequently Asked Questions</h2>
<div class="max-w-4xl mx-auto space-y-6 text-left">
<div>
<p class="font-bold">Who can participate?</p>
<p>Anyone! Students, professionals, beginners, or experienced developers from anywhere in the world.</p>
</div>
<div>
<p class="font-bold">Is it free to join?</p>
<p>Yes, HackSphere 2025 is 100% free and online.</p>
</div>
<div>
<p class="font-bold">Can I participate solo?</p>
<p>Yes! You can participate solo or form a team of up to 4 members.</p>
</div>
</div>
</section>

<!-- 🤝 Partners Section -->
<section class="bg-indigo-900 text-white py-16 px-8 text-center">
<h2 class="text-3xl font-semibold mb-10">Our Partners</h2>
<div class="flex justify-center flex-wrap gap-8">
<div class="bg-white text-indigo-800 px-6 py-4 rounded-lg shadow-md">TechCorp</div>
<div class="bg-white text-indigo-800 px-6 py-4 rounded-lg shadow-md">CodeBase</div>
<div class="bg-white text-indigo-800 px-6 py-4 rounded-lg shadow-md">DesignLab</div>
</div>
</section>

<!-- 📬 Contact Section -->
<section class="bg-white text-gray-800 py-16 px-8 text-center">
<h2 class="text-3xl font-semibold mb-6">Contact Us</h2>
<p class="mb-2">Got questions? Reach out to us at:</p>
<p class="text-lg font-medium">📧 <a href="mailto:[email protected]" class="text-blue-600 hover:underline">[email protected]</a></p>
</section>

<!-- 🔻 Footer -->
<footer class="text-center py-8 text-sm text-gray-300 border-t border-gray-700">
© 2025 HackSphere. All rights reserved.
</footer>

</body>
</html>
116 changes: 116 additions & 0 deletions Sanjana_Joseph/test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>HackSphere 2025</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Open+Sans&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Open Sans', sans-serif;
background-color: #f0f4f8;
color: #333;
}

.hero {
background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
color: white;
text-align: center;
padding: 100px 20px;
}

.hero h1 {
font-family: 'Orbitron', sans-serif;
font-size: 3.5em;
margin-bottom: 10px;
letter-spacing: 2px;
}

.hero p {
font-size: 1.3em;
margin: 10px 0;
}

.hero .cta-button {
display: inline-block;
margin-top: 30px;
background-color: #ff416c;
background-image: linear-gradient(to right, #ff4b2b, #ff416c);
color: white;
padding: 15px 35px;
font-size: 1em;
border: none;
border-radius: 30px;
text-decoration: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(255, 65, 108, 0.4);
}

.about {
padding: 70px 20px;
max-width: 800px;
margin: auto;
text-align: center;
}

.about h2 {
font-size: 2.5em;
color: #2c5364;
margin-bottom: 20px;
}

.about p {
font-size: 1.1em;
line-height: 1.6em;
color: #555;
}

.footer {
background-color: #111;
color: #bbb;
text-align: center;
padding: 20px 10px;
font-size: 0.9em;
}

@media (max-width: 600px) {
.hero h1 {
font-size: 2.2em;
}

.hero p {
font-size: 1em;
}

.about h2 {
font-size: 1.8em;
}
}
</style>
</head>
<body>

<div class="hero">
<h1>HackSphere 2025</h1>
<p>“Code. Create. Conquer.”</p>
<p>June 20–22, 2025 – Online</p>
<a href="#" class="cta-button">Register Now</a>
</div>

<div class="about">
<h2>About HackSphere</h2>
<p>HackSphere 2025 is a 48-hour global online hackathon that brings together developers, designers, and creative minds from around the world. Build, learn, and network with thousands of like-minded individuals.</p>
<p>Whether you're a coding wizard or just starting out, this is your opportunity to innovate, collaborate, and make something amazing in just two days!</p>
</div>

<div class="footer">
© 2025 HackSphere. All rights reserved.
</div>

</body>
</html>