victorwesterlund.com/public/not_found.html
Victor Westerlund 83223d66a8 1.0.0-dev11292157
Added NGINX server.conf and 404/403 error pages.

Changed default logo size to use 'em' units instead of 'vw'
2020-11-29 21:59:57 +01:00

51 lines
No EOL
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Full-stack web developer from Stockholm, Sweden.">
<meta name="theme-color" content="#ffffff">
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/css/style.css" rel="stylesheet">
<title>Page Not Found - Victor Westerlund</title>
<style>
#content {
box-sizing: border-box;
padding: 10vh;
}
h1, h2 {
text-align: center;
}
h1 {
font-size: 6em;
}
h2 {
font-size: 3em;
}
img {
position: absolute;
height: 50vh;
bottom: 0px;
left: 50%;
transform: translate(-50%);
pointer-events: none;
}
</style>
</head>
<body>
<div id="content">
<a href="https://victorwesterlund.com"><div class="logo"></div></a>
<h1>404 Not Found</h1>
<h2>idk..</h2>
</div>
<picture>
<source srcset="assets/img/where.webp" type="image/webp">
<source srcset="assets/img/where.gif" type="image/gif">
<img srcset="assets/img/where.png" type="image/png"/>
</picture>
</body>
</html>