trwnh.com/unified.test.hugo/static/error/index.html

43 lines
No EOL
764 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>I AM ERROR.</title>
<style>
body {
margin: 0;
display: grid;
height: 100vh;
width: 100vw;
grid-template-rows: auto 1fr;
}
@font-face {
font-family: zii;
src: url("/error/zii.ttf")
}
h1 {
font-family: zii;
font-size:2em;
letter-spacing: 0.125em;
padding-inline-start: 1rem;
}
h1 span {
display: block;
}
img {
image-rendering: pixelated;
width: 100%;
height: 100%;
object-fit: contain;
object-position: right;
}
</style>
</head>
<body>
<header>
<h1><span>I AM </span>ERROR.</h1>
</header>
<img src="Error.png" alt="I AM ERROR.">
</body>
</html>