rf-web/404.html
2019-11-10 12:42:37 +01:00

35 lines
680 B
HTML

---
permalink: /404.html
layout: default
---
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container error-404">
<div class="fourohfour">
<h1>4</h1>
<h1>0</h1>
<h1>4</h1>
</div>
<p><strong>Page not found</strong></p>
<p>¯\_(ツ)_/¯</p>
<a href="/">return home</a>
<script>
const f404 = document.querySelectorAll('h1, strong, p')
f404.forEach(elem => elem.addEventListener('mouseover', () => elem.parentNode.removeChild(elem)))
</script>
</div>