-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (84 loc) · 4.04 KB
/
index.html
File metadata and controls
86 lines (84 loc) · 4.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-97FHRPGGBN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-97FHRPGGBN');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Skill Issues Killer</title>
<style>
body {
background-color: black;
color: green;
font-family: monospace;
}
header h1, section h2, footer p {
color: #00ff00; /* Lighter green for headings */
}
.btn {
color: green;
text-decoration: none;
border: 1px solid whitesmoke;
padding: 5px 10px;
display: inline-block;
}
.btn:hover {
background-color: #00ff00;
color: black;
}
header, section, footer {
margin: 20px;
}
a {
color: green;
}
a:hover {
color: lime;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Welcome to Skill Issues Killer</h1>
<p>(it's <b>free</b>) The ultimate platform to level up your backend development skills! (it's <b>open source</b>)</p>
</header>
<section id="introduction">
<h2>About Skill Issues Killer</h2>
<p>Did I already mention it's <b>free and open source?</b><br>so just... <a href="https://github.com/sissues/cli" class="btn">check our GitHub already</a></p>
<p>Are you tired of solving small, trivial puzzles that don't really prepare you for the real world? Say no more! Skill Issues Killer is here to push you beyond your limits. Our platform gives you evolving, real-world projects that require you to think critically about design and implementation from start to finish.</p>
</section>
<section id="why-choose-us">
<h2>Why Choose Skill Issues Killer?</h2>
<ul>
<li>It's <b>free</b> and <b>open source.</b></li>
<li><i>Real-world Projects</i>: Work on projects that evolve over time, mimicking real-world scenarios.</li>
<li><i>Comprehensive Tests</i>: Ensure your solutions meet all requirements with our robust automated test suites.</li>
<li><i>Design for Extensibility</i>: Learn to design systems that can be easily extended and maintained.</li>
<li><i>Community Support</i>: Get help and feedback from our passionate community of developers.</li>
</ul>
</section>
<section id="invitation">
<h2>Take the Challenge!</h2>
<p>No matter how junior you are, we dare you to take on these projects. We promise you'll see significant improvement in your backend skills. Each project is designed to push you to think critically, design effectively, and code like a pro.</p>
<p>Ready to dive in? Click the link below to download the platform and start your journey to becoming a backend superstar/ninja/whatever!</p>
<a href="https://github.com/sissues/cli" class="btn">Check our GitHub and get started!</a>
</section>
<section id="contribute">
<h2>Contribute to Skill Issues Killer (yes we are <b>open source</b>)</h2>
<p>We are always looking for contributors to add new projects and test suites. If you have an idea for a challenging project or want to help improve the platform, we welcome your contributions!</p>
<p>Check out our contribution guidelines on GitHub and become a part of our growing community of developers making a difference.</p>
<a href="https://github.com/sissues/cli/blob/main/CONTRIBUTING.md" class="btn">Contribute on GitHub</a>
</section>
<footer>
<p>© 2024 Skill Issues Killer. All rights reserved.</p>
</footer>
</div>
</body>
</html>