-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
62 lines (50 loc) · 2.02 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=David+Libre|Hind:400,700" rel="stylesheet">
<link rel="stylesheet" href="./fonts/Serif/cmun-serif.css" />
<link rel="stylesheet" href="./fonts/Serif-Slanted/cmun-serif-slanted.css" />
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/nav_bar.css">
<link rel="stylesheet" href="css/404.css">
<link rel="stylesheet" href="css/footer.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143270978-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-143270978-1');
</script>
<link rel="shortcut icon" href="./data/icons/Icon.ico" />
<title>Igor's Tech Blog</title>
</head>
<body>
<header class="header">
<div class="logo">
<a href="./index.html"><img src="data/vector/logo.svg" alt="Home"></a>
</div>
<nav class="navigation">
<a href="#navigation" class="nav-trigger">
<span><em aria-hidden="true"></em></span>
</a>
<ul>
<li><a href="./archives.html">Archives</a></li>
<li><a href="./about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<div class="centered-block">
<p><font size="8"> 404 </font></p>
<p>Sorry, but there's no web page you are looking for.</p>
<p>If you've followed a link expecting something to be here, you can <a href="./about.html">contact</a> me.</p>
</div>
<div class="footer"></div>
</main>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</body>
</html>