-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.32 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head><title>xerix123456's site</title></head>
<link rel="stylesheet" href="lib/7.css">
<link rel="stylesheet" href="lib/system.css">
<body>
<style>
body {
background-image: url('wallpaper/wallpaper.png');
}
</style>
<div class="background" id="divElement">
<div class="window glass active" style="max-width: 320px">
<div class="title-bar">
<div class="title-bar-text">kernel64</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body has-space">
<menu role="tablist">
<button role="tab" aria-controls="about" aria-selected="true">About</button>
<button role="tab" onclick="redirectToPage()" aria-controls="pcspecs">PC Specs</button>
<script>
function redirectToPage() {
window.location.href = "pcspecs.html";
}
</script>
</menu>
<p>Welcome to my site! Below you will find some not useful info about me.</p>
<p>Name: Unknown</p>
<p>Age: Unknown</p>
<p>Country: Belarus</p>
<p>Usernames: kernel64; xerix123456</p>
<p>About me: 0 coding skills, very stupid</p>
<p>ver:1.1</p>
</div>
</div>
</div>
</body>
</html>