-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (95 loc) · 2.61 KB
/
index.html
File metadata and controls
105 lines (95 loc) · 2.61 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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTMLToolkit Beta Builds</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Pixelify+Sans:wght@400..700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Pixelify Sans', sans-serif;
background: linear-gradient(135deg, #2196F3, #21CBF3);
min-height: 100vh;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
color: #fff;
transition: background 0.3s ease;
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
text-align: center;
}
p {
font-size: 1.2rem;
color: #e0e0e0;
margin-bottom: 2rem;
text-align: center;
}
.links {
display: flex;
flex-direction: column;
gap: 1rem;
width: 100%;
max-width: 400px;
}
.links a {
display: block;
padding: 1rem 1.2rem;
background: rgba(21, 22, 21, 0.21);
text-decoration: none;
color: #fff;
font-weight: 500;
border-radius: 3px;
text-align: center;
transition: all 0.3s ease;
}
.links a:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.05);
}
footer {
margin-top: 3rem;
font-size: 0.9rem;
color: #c0c0c0;
text-align: center;
}
@media (prefers-color-scheme: dark) {
body {
background: linear-gradient(135deg, #324252, #113f4e);
}
}
</style>
</head>
<body>
<h1>HTMLToolkit Beta Builds</h1>
<p>Links to pages:</p>
<div class="links">
<a href="https://github.com/HTMLToolkit/beta/" target="_blank">Main Beta Repository</a>
</div>
<script>
fetch('./links.json')
.then(response => response.json())
.then(folders => {
const linksContainer = document.querySelector('.links');
folders.forEach(folder => {
const link = document.createElement('a');
link.href = `./${folder}`;
link.target = '_blank';
link.textContent = folder;
linksContainer.appendChild(link);
});
})
.catch(error => console.error('Error loading links:', error));
</script>
<footer>
© 2025 HTMLToolkit – Beta Channel
</footer>
</body>
</html>