mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-14 19:43:42 +02:00
28 lines
1.1 KiB
HTML
Executable file
28 lines
1.1 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Victor Westerlund</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Full-stack web developer from Stockholm, Sweden.">
|
|
<link rel="icon" href="/assets/media/favicon-dark.png" media="(prefers-color-scheme:no-preference)">
|
|
<link rel="icon" href="/assets/media/favicon-dark.png" media="(prefers-color-scheme:light)">
|
|
<link rel="icon" href="/assets/media/favicon-light.png" media="(prefers-color-scheme:dark)">
|
|
<style>
|
|
html, body { margin: 30px; font-family: monospace; color: black; }
|
|
span { background: black; color: white; }
|
|
@media (prefers-color-scheme: dark) {
|
|
html, body, a { background: black; color: white; }
|
|
span { background: white; color: black; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>there is nothing here</h1>
|
|
<p>and that is all I know</p>
|
|
<a href="/"><h2>take me home</h2></a>
|
|
<footer>
|
|
<span>victorwesterlund.com</span>
|
|
</footer>
|
|
</body>
|
|
</html>
|