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
Empty file.
95 changes: 95 additions & 0 deletions NIYA PIUS/hacksphere/internship.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<!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=Inter:wght@400;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}

body {
background-color: #0f172a;
color: #f1f5f9;
line-height: 1.6;
}

header {
text-align: center;
padding: 100px 20px 60px;
background: linear-gradient(to bottom, #1e293b, #0f172a);
}

header h1 {
font-size: 3rem;
margin-bottom: 20px;
}

header p {
font-size: 1.2rem;
margin-bottom: 30px;
color: #94a3b8;
}

.event-details {
font-size: 1rem;
margin-bottom: 40px;
color: #cbd5e1;
}

.cta-button {
background-color: #3b82f6;
color: white;
padding: 14px 32px;
font-size: 1rem;
border: none;
border-radius: 8px;
cursor: pointer;
text-decoration: none;
}

section {
padding: 60px 20px;
max-width: 800px;
margin: 0 auto;
text-align: center;
}

footer {
text-align: center;
padding: 40px 20px;
font-size: 0.9rem;
background-color: #1e293b;
color: #94a3b8;
}
</style>
</head>
<body>

<!-- 🔥 Hero Section -->
<header>
<h1>HackSphere 2025</h1>
<p>“Code. Create. Conquer.”</p>
<div class="event-details">June 20–22, 2025 – Online</div>
<a href="#" class="cta-button">Register Now</a>
</header>

<!-- ℹ️ About Section -->
<section>
<h2>About HackSphere</h2>
<p>HackSphere 2025 is a global 48-hour hackathon designed to unite developers, designers, and creators from around the world. Whether you're a coding novice or an experienced hacker, this event is your playground to innovate and build something extraordinary.</p>
<p>Collaborate with fellow tech enthusiasts, get mentored by industry experts, and showcase your skills on a global stage. The challenge is intense, the rewards are immense, and the experience is unforgettable.</p>
</section>

<!-- 🔻 Footer -->
<footer>
© 2025 HackSphere. All rights reserved.
</footer>

</body>
</html>