30 lines
799 B
HTML
30 lines
799 B
HTML
<!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>
|