-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.2 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Sulfrix's website</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="manifest" href="/manifest.json">
<meta property="og:title" content="Sulfrix's Website" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Random JS things I toy around with, and a couple of useful things." />
<script src="homepage.js"></script>
<link rel="stylesheet" href="styles/css/style.css">
</head>
<body>
<h1><img src="Newavatar.png"
style="width: 2.5%; height: 2.5%;margin-right: 10px; border-radius: 50px; border-top: 10px;" />Sulfrix's
website</h1>
<a href="https://github.com/sulfrix/sulfrix.github.io/tree/master">GitHub source</a>
<a href="/websim.html">Experimental Web Simulator!</a>
<a href="/webhook.html">Send webhook POST commands!</a>
<a href="/gmodload.html">gmod loading screen</a>
<hr>
<hr style="color: transparent">
<hr>
<h1>FrixBot</h1>
<p1>FrixBot is dead.</p1>
<button onclick="funnySound()">Funny Sound</button>
<script>
function funnySound() {
let x = new Audio('Item_130.wav')
x.play()
}
</script>
<script src="notificationSystem.js"></script>
</body>
</html>