-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (117 loc) · 3.89 KB
/
index.html
File metadata and controls
127 lines (117 loc) · 3.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HSSoC — HashSlap Summer of Code</title>
<link rel="stylesheet" href="https://unpkg.com/terminal.css@0.7.2/dist/terminal.min.css" />
<style>
body {
background-color: #000;
color: #00ff00;
font-family: monospace;
}
nav {
position: sticky;
top: 0;
background-color: #111;
padding: 0.5em 1em;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #00ff00;
}
nav a {
margin-left: 1em;
color: #00ff00;
text-decoration: none;
}
section {
margin: 3em auto;
max-width: 800px;
}
.cta-btn {
background-color: #00ff00;
color: #000;
padding: 0.75em 1.5em;
border: none;
font-weight: bold;
font-size: 1em;
cursor: pointer;
margin-top: 1.5em;
display: block;
margin-left: auto;
margin-right: auto;
}
.button-container {
text-align: center;
}
footer {
text-align: center;
margin-top: 4em;
font-size: 0.9em;
color: #999;
}
</style>
</head>
<body>
<!-- 🧭 Navbar -->
<nav>
<div><strong>HSSoC</strong></div>
<div>
<a href="https://discord.gg/PAdyCexzRS" target="_blank">Discord</a>
<a href="https://x.com/HashSlap" target="_blank">Twitter</a>
<a href="https://github.com/HashSlap-Summer-of-Code" target="_blank">GitHub</a>
</div>
</nav>
<!-- 🧢 Hero Section -->
<section id="hero">
<h1>HashSlap Summer of Code 2025</h1>
<p><i>Where code hits hard and hackers level up</i></p>
<p>
HSSoC is a beginner-friendly open source coding program for students. It runs during the summer to help you learn, contribute, and grow — all while working on real-world open source projects.
</p>
<div class="button-container">
<button class="cta-btn" onclick="location.href='https://forms.gle/kPnk5NgqUZ9LRKmE7'">Join Now</button>
</div>
</section>
<!-- ❓ About -->
<section id="about">
<h2>🧐 What is HSSoC?</h2>
<p>
HashSlap Summer of Code (HSSoC) is a student-led initiative to promote open source learning during the summer. Students of all skill levels can explore real projects, work collaboratively, and gain valuable development experience.
</p>
<p>
<strong>Open source</strong> means software whose code is freely available to use, modify, and improve. It’s how tools like Linux, Firefox, and Python are built — and now you can be part of it too.
</p>
</section>
<!-- 💻 Projects -->
<section id="projects">
<h2>💻 Projects</h2>
<p><strong>Projects will be announced soon.</strong></p>
<p>Stay tuned on <a href="https://github.com/HashSlap-Summer-of-Code" target="_blank">GitHub</a> and our Discord community for updates.</p>
</section>
<!-- 🙌 Contributors -->
<section id="contributors">
<h2>🙌 Top Contributors</h2>
<p>Coming soon after the coding phase begins!</p>
<p>Every contributor receives a certificate. Top contributors win swags and digital goodies!</p>
</section>
<!-- 🚀 Getting Started -->
<section id="join">
<h2>🚀 Get Started</h2>
<p>1. Fill the signup form<br>
2. Join our Discord community<br>
3. Wait for projects to drop<br>
4. Start contributing and grow your skills!</p>
<div class="button-container">
<button class="cta-btn" onclick="location.href='https://forms.gle/kPnk5NgqUZ9LRKmE7'">Join Now</button>
</div>
</section>
<!-- 🧾 Footer -->
<footer>
HSSoC is powered by students & open source ❤️<br>
© 2025 HashSlap Initiative
</footer>
</body>
</html>