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
31 changes: 31 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!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 rel="stylesheet" href="styles.css" />
</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>
</section>


<section class="about">
<h2>About the Event</h2>
<p>HackSphere 2025 is a 48-hour global hackathon connecting developers, designers, and creators from around the world. Solve problems, build ideas, and network globally!<br>Whether you're a beginner taking your first steps into the world of coding or a seasoned hacker ready to push boundaries, HackSphere provides the perfect platform to learn, build, and grow. With exciting challenges, networking opportunities, and amazing prizes, it's more than just a hackathon—it's a movement.</p>
</section>


<footer>
<p>&copy; 2025 HackSphere. All rights reserved.</p>
</footer>

</body>
</html>
49 changes: 49 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f4f4f9;
color: #333;
text-align: center;
}

.hero {
background:linear-gradient(135deg,#3a0ca3, #7209b7);
color: rgb(249, 192, 227);
padding: 60px 20px;
text-align: center;
}

.cta-button {
display: inline-block;
padding: 12px 25px;
margin-top: 20px;
background: #ffbe0b;
color: #000;
text-decoration: none;
font-weight: bold;
border-radius: 8px;
transition: background 0.3s;
}
.cta-button:hover{
background-color: #faa307;
}

.about {
padding: 40px 20px;
max-width: 800px;
margin: auto;
color: rgb(208, 201, 237);
}

.about h2{
text-align: center;
color: #8d70d2;
}

footer {
background: #222;
color: #ccc;
text-align: center;
padding: 20px;
}