-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (75 loc) · 2.24 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
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
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<link rel="icon" type="image/x-icon" href="assets/icons/favicon.png" />
<link rel="stylesheet" href="style.css" />
<title>catto's website: home</title>
<script>
windowalert = function (x) {
window.alert(x);
};
</script>
<script>
windowconfirm = function (x) {
window.confirm(x);
};
</script>
</head>
<body>
<div class="container">
<script>
$(function () {
$("#navbar").load("components/navbar.html");
});
</script>
<div id="navbar">
<nav>
<ul style="padding-left: 0px">
<li>
<a onclick="windowalert('uwu')" style="color: aliceblue">│ </a>
</li>
<li><a href="index.html" style="text-decoration: none">HOME</a></li>
<li>
<a href="aboutme.html" style="text-decoration: none">ABOUT</a>
</li>
<li>
<a onclick="windowconfirm('')" style="text-decoration: none"
>YOUTUBE</a
>
</li>
<li>
<a href="contact.html" style="text-decoration: none">CONTACT</a>
</li>
<!-- <li><a href="chatbox.html">CHATROOM</a></li> -->
<li>
<a onclick="windowalert('owo')" style="color: aliceblue">│ </a>
</li>
</ul>
</nav>
<script>
function windowconfirm() {
var confirmation = confirm("this will redir to youtube.com");
if (confirmation) {
window.location.href = "https://youtube.com/@catto24";
} else {
}
}
</script>
</div>
<main>
<h2>bing bong</h2>
<p>welcome to my website i guess</p>
<a href="http://youtube.com/@catto24">
check out my YouTube channel if you want idk i'm not your dad
</a>
<div style="padding-bottom: 14px"></div>
<hr />
<h2>interests</h2>
<a href="https://github.com/catto24">coding</a>
<p>web-development</p>
<p>gaming</p>
<br />
</main>
</div>
</body>
</html>