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 path404.html
More file actions
118 lines (102 loc) · 2.69 KB
/
404.html
File metadata and controls
118 lines (102 loc) · 2.69 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
<!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;
}
.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;
}
.spt {
font-size: 35px;
text-align: center;
}
</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>
</div>
<a href="javascript:void(0);"
class="icon"
onclick="toggleMenu()">
☰
</a>
</div>
<div class="largetextbar">
<p>404</p>
</div>
<div class="spt">
<p>Not Found</p>
</div>
<script>
function toggleMenu() {
let navbar = document.getElementById("myNavbar");
navbar.classList.toggle("responsive");
}
</script>
</body>
</html>