Skip to content
Open
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
140 changes: 140 additions & 0 deletions hacktoberfest2025.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hacktoberfest 2025 – Beginner's Guide</title>
<style>
body {
font-family: "Poppins", sans-serif;
background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
color: #222;
margin: 0;
padding: 0;
}

header {
background: #ff4b2b;
color: white;
text-align: center;
padding: 25px 10px;
}

h1 {
font-size: 2rem;
margin-bottom: 10px;
}

h2 {
color: #ff4b2b;
margin-top: 30px;
}

section {
padding: 20px;
max-width: 900px;
margin: auto;
line-height: 1.6;
}

.repo-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}

.repo-table th,
.repo-table td {
border: 1px solid #ccc;
padding: 10px;
text-align: center;
}

.repo-table th {
background: #ff4b2b;
color: white;
}

.btn {
display: inline-block;
background: #ff4b2b;
color: white;
padding: 10px 18px;
margin-top: 15px;
border-radius: 6px;
text-decoration: none;
transition: 0.3s;
}

.btn:hover {
background: #ff6f61;
}

footer {
background: #222;
color: white;
text-align: center;
padding: 15px;
margin-top: 30px;
}

.highlight {
background: #ffe8e3;
padding: 10px;
border-left: 5px solid #ff4b2b;
margin: 15px 0;
}
</style>
</head>
<body>
<header>
<h1>🌍 Hacktoberfest 2025</h1>
<p>Beginner’s Guide | Rewards | Repositories | Open Source Journey</p>
<a href="#" class="btn">Join Discord</a>
<a href="#" class="btn">Subscribe YouTube</a>
</header>

<section>
<h2>🚀 Quick Start</h2>
<p>Fork the repo → Add your beginner-friendly project → Submit your PR → Celebrate 🎉</p>

<h2>📂 Beginner-Friendly Repositories</h2>
<table class="repo-table">
<tr>
<th>⭐ Repo Name</th>
<th>🔗 URL</th>
<th>⚡ Tech Stack</th>
</tr>
<tr><td>Stopwatch</td><td><a href="#">Link</a></td><td>HTML, CSS, JS</td></tr>
<tr><td>Login Templates</td><td><a href="#">Link</a></td><td>HTML, CSS</td></tr>
<tr><td>Meme Generator</td><td><a href="#">Link</a></td><td>HTML, CSS, JS</td></tr>
</table>

<div class="highlight">
🎯 <b>Tip:</b> Always read the repo's <code>CONTRIBUTING.md</code> file before submitting your PR.
</div>

<h2>🎁 Rewards in 2025</h2>
<ul>
<li>👕 Hacktoberfest T-shirt for top contributors</li>
<li>🌱 Tree planted in your name</li>
<li>🪪 Digital Holopin Badge</li>
</ul>

<h2>💡 Final Tip</h2>
<p>Contribute with curiosity and respect ❤️ Every PR is a step in your open-source journey.</p>

<button class="btn" onclick="showMessage()">Click for Motivation 🌟</button>
</section>

<footer>
Made with ❤️ by Deepali | Hacktoberfest 2025
</footer>

<script>
function showMessage() {
alert("Keep coding, keep contributing — your open-source journey has just begun 🚀✨");
}
</script>
</body>
</html>