28 lines
937 B
HTML
28 lines
937 B
HTML
<!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>⬇</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> |