-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
35 lines (35 loc) · 1.07 KB
/
about.html
File metadata and controls
35 lines (35 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About this Site...</title>
<link rel="icon" href="/knightbot63.github.io/static/myIcon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="/knightbot63.github.io/static/home.css" />
</head>
<body>
<div class="topnav">
<a href="/knightbot63.github.io">Knightbot63's Website</a>
<a onclick=darkMode()>Dark Mode</a>
<a href="/knightbot63.github.io/about.html">About</a>
<a href="/knightbot63.github.io/about_me.html">About Me!</a>
</div>
<script>
function darkMode() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>
<h1>About:</h1>
<h2>This site doesn't use cookies.
<br>
<br>
<br>
<br><h2>Other:</h2><h5>This site doesn't contain, Malware, Viruses, Cookies, Personal Info, Browser Extensions, and this is safe for anyone to use!</h5>
<br>
<br></h3>
<br>
<br>
<h5>Credits to replit for hosting, Knightbot63 for website</h5>
</body>