-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (86 loc) · 1.8 KB
/
index.html
File metadata and controls
105 lines (86 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BlackBox Linux</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
font-family: monospace;
background: #0a0a0a;
color: #eaeaea;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 700px;
}
h1 {
font-size: 3rem;
letter-spacing: 2px;
}
.tagline {
font-size: 1.2rem;
margin: 20px 0;
color: #aaa;
}
.highlight {
color: #00ff9f;
font-weight: bold;
}
.version {
margin: 10px 0;
color: #00ff9f;
font-size: 0.95rem;
}
.btn {
display: inline-block;
margin: 20px 10px;
padding: 12px 24px;
border: 1px solid #00ff9f;
color: #00ff9f;
text-decoration: none;
transition: 0.2s;
}
.btn:hover {
background: #00ff9f;
color: #000;
}
.footer {
margin-top: 30px;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>BlackBox Linux</h1>
<div class="tagline">
Linux Expert You Say... <span class="highlight">PROVE IT.</span>
</div>
<!-- VERSION DISPLAY -->
<div class="version" id="version"></div>
<p>
Minimal Linux system.<br>
No package manager.<br>
No documentation.<br>
No excuses.
</p>
<a href="https://github.com/Aarav90-cpu/BlackBox-Linux/releases" class="btn">Releases</a>
<a href="https://github.com/Aarav90-cpu/BlackBox-Linux" class="btn">Source Code</a>
<div class="footer">
Boot. Survive. Build.
</div>
</div>
<script>
// 🔥 CHANGE VERSION HERE ONLY
const VERSION = "Alpha 0.0.1";
document.getElementById("version").innerText = "Version: " + VERSION;
</script>
</body>
</html>