31 lines
627 B
HTML
31 lines
627 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>
|
|
$(document).mousemove(function (event) {
|
|
$(".torch").css({
|
|
top: event.pageY,
|
|
left: event.pageX,
|
|
});
|
|
});
|
|
</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>
|