Initial commit

This commit is contained in:
Sophia Atkinson 2024-04-28 12:40:01 -07:00
commit 0a033b61c8
Signed by: Sophia
GPG Key ID: 73928E5CCCD28BE1
6 changed files with 73 additions and 0 deletions

45
assets/css/thebest.css Normal file

File diff suppressed because one or more lines are too long

BIN
assets/fart.mp3 Normal file

Binary file not shown.

BIN
assets/imgs/favicon-16.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 B

BIN
assets/imgs/favicon-32.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

BIN
assets/imgs/pdx-rocks.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

28
index.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PDX Rocks!</title>
<link rel=" stylesheet" href="./assets/css/thebest.css">
<link rel="icon" type="image/webp" href="/assets/imgs/favicon-32.webp" sizes="32x32">
<link rel="icon" type="image/webp" href="/assets/imgs/favicon-16.webp" sizes="16x16">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<div id="content">
<h1>PDX Rocks!<br>&#x2B07;</h1>
<img id="rocks" onclick="audiofunctionis('fart');" src="/assets/imgs/pdx-rocks.webp">
<h2>A site by <a href="https://sophia.wtf/?ref=pdx.rocks">Sophia Atkinson</a></h2>
</div>
</body>
<script>
var rockFart = new Audio('/assets/fart.mp3');
function audiofunctionis(name) {
if(name == 'fart') {
rockFart.play();
}
}
</script>
</html>