-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
37 lines (31 loc) · 1.48 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<title>404</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Heebo:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/styles/notfound.css" />
<script src="/js/auto.js"></script>
<script src="/js/404.js"></script>
<script src="/js/anchor.js"></script>
</head>
<body>
<header class="header">
<div class="header-logo-container">
<a href="/index.html"><img class="header-logo" src="/img/logo.png" alt="Ebengrad"></a>
<a href="/index.html">Not Endless Space</a>
</div>
<input type="text" id="mySearch2" onkeyup="SearchAll()" placeholder="Поиск..." title="Type in a category">
</header>
<div class="container-404">
<h1>404</h1>
<div class="buttons-container">
<button class="back-page-button" onclick="window.location='/index.html'">На главную страницу</button>
<button onclick="window.history.back()" id="on-last-page" class="back-page-button" href="">На последнюю страницу</button>
</div>
</div>
</body>
</html>