This repository was archived by the owner on Jun 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (39 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
48 lines (39 loc) · 1.92 KB
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
46
47
48
<!DOCTYPE >
<html lang="ru" data-bs-theme="dark">
<head>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<title>Упс...</title>
<link rel="stylesheet" href="styles/error404.css">
</head>
<body onload="check()">
<script src="scripts/minigame.js"></script>
<div class="container">
<h2 class="text-center">ERROR 404 страница не найдена!</h2>
</div>
<div class="container">
<div class="row">
<img src="assets/error.png" alt="ERROR 404" class="error">
</div>
</div>
<div class="container d-flex align-items-center">
<div id="square-buttons">
<button class="btn btn-outline-dark square-button" id="b1" onclick="b1()"></button>
<button class="btn btn-outline-dark square-button" id="b2" onclick="b2()"></button>
<button class="btn btn-outline-dark square-button" id="b3" onclick="b3()"></button>
<button class="btn btn-outline-dark square-button" id="b4" onclick="b4()"></button>
</div>
<p id="clicked-square"></p>
</div>
</body>
<footer>
<p class="text-dark text-center">--- -.- .--. .. -. -.-</p>
<p class="text-dark text-center">----------------------</p>
<p class="text-dark text-center">.-. .-- . .--. . ---</p>
<p class="text-dark text-center">.-.. .. ---. ... --- </p>
<p class="text-dark text-center">.----</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</html>