initial commit

This commit is contained in:
Daniel Yrovas 2024-05-08 15:50:53 +10:00
commit 311ace0e57
5 changed files with 635 additions and 0 deletions

30
flashlight404.html Normal file
View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>404, Page Not Found</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="./style.css" rel="stylesheet" />
<script>
function update(e) {
torch = document.getElementsByClassName(".torch")[0];
torch.style.top = e.pageY;
torch.style.left = e.pageX;
}
document.addEventListener("mousemove", update);
document.addEventListener("touchmove", update);
</script>
</head>
<body>
<div class="text">
<h1>404</h1>
<h2>Uh, Ohh</h2>
<h3>
Sorry we cant find what you are looking for, probably 'cuz its so dark
in here
</h3>
</div>
<div class="torch"></div>
</body>
</html>