-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_me.html
31 lines (31 loc) · 1.16 KB
/
about_me.html
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
<!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 me!</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>
<h1>Hello!</h1>
<h2>My name is @Knightbot63, I go by other names.</h2>
<h2>What I like:<br>Coding (HTML, CSS, JS, Python, etc.)<br>Playing Games<br>And more!</h2>
<h3>About me:<br>I go by he/him, doesn't matter which.<br>I started coding on something called Scratch since 4th grade. Scratch is a block-based language that's easy to understand.</h3>
<br>
<br>
<marquee>... and that's it!</marquee>
<script>
function darkMode() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>
</body>