FumbleAround/index.html
Michael Maurakis 712f350fe7 Sanity check.
It works with literally no features.
2025-01-19 17:35:31 -06:00

26 lines
No EOL
779 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FumbleUpon</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">FumbleUpon</div>
<button id="fumbleButton">Fumble!</button>
</header>
<main>
<iframe id="contentFrame" src="about:blank" title="Content"></iframe>
</main>
<script>
document.getElementById('fumbleButton').addEventListener('click', async () => {
const frame = document.getElementById('contentFrame');
// Open wiby.me/surprise directly in the iframe
frame.src = 'https://wiby.me/surprise/';
});
</script>
</body>
</html>