website/templates/404.html
2023-11-19 00:56:48 +01:00

24 lines
542 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Filip Rojek | 404 Not found</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="/img/fr.ico">
<link rel="stylesheet" href="/general.css">
<link rel="stylesheet" href="/vars.css">
<link rel="stylesheet" href="/style.css">
<style>
.flex-col {
height: 100vh;
}
</style>
</head>
<body>
<div class="content flex-col">
<h2>404 - Not found</h2>
<a href="/">Home</a>
</div>
</body>
</html>