-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
45 lines (42 loc) · 1.51 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Turrnut - 404</title>
<link rel="stylesheet" href="https://turrnut.com/css/styles.css">
<link rel="icon" type="image/x-icon" href="https://turrnut.com/icon/turrnut.ico">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<a href="https://turrnut.com/" class="logo">
<img src="https://turrnut.com/icon/turrnut.png" alt="Logo Icon" class="logo-icon">
Turrnut
</a>
</nav>
<!-- Title Text -->
<div id="title_text">404</div>
<div id="title_text_small">Page not found</div>
<p><img class="align_center" id="randomGif" alt="Random GIF" width="40%" height="40%"></p>
<button onclick="window.location.href = 'https:/' + '/turrnut.com/';"> Click here to return home</button>
<!-- Footer -->
<footer class="footer">
Copyright (c) Turrnut 2025
</footer>
<script>
// Array of GIF URLs
const gifs = [
"https://turrnut.com/img/4041.gif",
"https://turrnut.com/img/4042.gif",
"https://turrnut.com/img/4043.gif"
];
// Select a random GIF
const randomIndex = Math.floor(Math.random() * gifs.length);
const chosenGif = gifs[randomIndex];
// Set the image source
document.getElementById("randomGif").src = chosenGif;
</script>
<script src="https://turrnut.com/js/script.js"></script>
</body>
</html>