This repository was archived by the owner on Nov 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.html
More file actions
198 lines (179 loc) · 5.67 KB
/
index.html
File metadata and controls
198 lines (179 loc) · 5.67 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html lang="en">
<link href="https://fonts.googleapis.com/css2?family=Liter&display=swap" rel="stylesheet">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width,
initial-scale=1.0">
<title>ONC</title>
<style>
body {
margin: 0;
font-family: "Liter", serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
footer {
font-family: "Liter", serif;
margin: 0;
padding: 15px; /* Added padding for spacing */
background-color: greenyellow;
margin-top: auto;
display: flex; /* Use flexbox for the footer content */
justify-content: space-between; /* Space out the left and right content */
align-items: center; /* Align items vertically in the center */
}
.footer-left, .footer-right {
display: flex;
flex-direction: column;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: greenyellow;
padding: 14px 20px;
}
.navbar a {
color: black;
text-decoration: none;
padding: 10px 15px;
}
.navbar a:hover {
background-color: #4CAF50;
color: black;
}
.navbar .logo {
flex: 1;
}
.navbar .menu {
display: flex;
}
.navbar.responsive .menu {
display: block;
}
.navbar .icon {
display: none;
}
@media screen and (max-width: 600px) {
.navbar .icon {
display: block;
cursor: pointer;
}
.navbar .menu {
display: none;
}
.navbar.responsive .menu {
display: flex;
flex-direction: column;
background-color: greenyellow;
position: absolute;
top: 15%;
left: 0;
right: 0;
}
.navbar.responsive .menu a {
padding: 10px 20px;
/* text-align: center; */
}
}
.largetextbar {
font-size: 80px;
text-align: center;
margin-left: 100px;
margin-right: 100px;
}
.nt {
font-size: 15px;
text-align: center;
}
a {
color: blue;
text-decoration: none;
}
.spt {
font-size: 35px;
text-align: center;
}
.actionbutton {
display: flex;
justify-content: center;
height: 5;
}
.actionbutton button {
color: blue;
font-family: Liter;
margin-left: 5px;
margin-right: 5px;
}
</style>
</head>
<body>
<div class="navbar" id="myNavbar">
<p href="#" class="logo"><img src="https://github.com/killsecurly/assets/blob/main/KSFLogoRed.png?raw=true" style="height: 60px"></p>
<div class="menu">
<a href="https://killsecurly.com">Home</a>
<a href="https://onc.killsecurly.com">ONC</a>
<a href="https://interstellar.killsecurly.com">Interstellar</a>
<a href="https://assets.killsecurly.com">Assets</a>
<a href="https://discord.killsecurly.com">Discord</a>
<a href="https://policy.killsecurly.com">Policy</a>
</div>
<a href="javascript:void(0);"
class="icon"
onclick="toggleMenu()">
☰
</a>
</div>
<div class="largetextbar">
<p>ONCv4</p>
</div>
<div class="spt">
<p>The next generation of SecurlyONC</p>
</div>
<div class="nt">
<p>SecurlyONC v4.1 beta is here. Here's what's new:</p>
<p>All-new signup system<br>
Stable servers on NextDNS<br>
Completley redone blocking system<br>
Works for GoGuardian, Securly, and more<br>
Fully maintained in-house</p>
</div>
<div class="spt" style="font-size: 25px;">
<p>Apply using your network type:</p>
</div>
<div class="actionbutton">
<button><a href="ipv4.html">Static IPv4</a></button>
<button><a href="https://forms.gle/q9YExoxzz9crn9c1A">IPv6</a></button>
<button><a href="https://forms.gle/axiiLCx8aq4SZSc69">DoH</a></button>
</div>
<div class="nt" style="padding-bottom: 100px">
<p>If your device and network support IPv6, use IPv6.<br>
If your device supports DNS over HTTPS, use DoH.<br>
If you have no idea what IPv6 or DoH is, use IPv4.</p>
</div>
<script>
function toggleMenu() {
let navbar = document.getElementById("myNavbar");
navbar.classList.toggle("responsive");
}
</script>
</body>
<footer>
<div class="footer-left">
<p>Copyright © 2023-2025 KillSecurly Foundation<br>
Usage of this site requires of agreement with the KillSecurly Foundation's Policy.<br><br>
KillSecurly is NOT responsible for any damages<br>caused by the incorrect usage of this software.<br><br>
killsecurly.com · KillSecurly Foundation · Established 2023
</p>
</div>
<div class="footer-right">
<p style="font-weight: bold;">CONTACT US</p>
<p>Questions? Comments? Concerns?<br>
administration@killsecurly.com<br><br>
Technical Problems?<br>wm@killsecurly.com</p>
</div>
</footer>
</html>