mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-13 19:13:42 +02:00
- NETWATCH 404 pages removed - time for something new - Compartmentalized CSS fonts and JS script files - Streamlined cache manifest for ServiceWorker - Added AVIF images, replaced PNG fallback with WebP fallback - Changed favicon color
47 lines
2.5 KiB
HTML
47 lines
2.5 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>Victor Westerlund</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div id="intro">
|
|
<div class="inner">
|
|
<div class="block">
|
|
<div class="logo"></div>
|
|
<h1><span>victor westerlund</span></h1>
|
|
<h2><span>full-stack web developer</span></h2>
|
|
</div>
|
|
<div class="block">
|
|
<p><span>I create things with code. The things I've created for the public reside as open-source repositories on <a href="https://github.com/VictorWesterlund" ping="https://api.victorwesterlund/log/ping/" target="_blank">GitHub</a>, the rest you'll be lucky to hear about some day.</span></p>
|
|
<p><span>Other topics (seemingly irrelevant to programming) I find facinating include but is in no way limited to astronomy, psychology, sociology, economics, ...</span></p>
|
|
<p><span><strong>hello@victorwesterlund.com</strong></span>​(<a href="https://storage.googleapis.com/public.victorwesterlund.com/publickey.gpg" ping="https://api.victorwesterlund/log/ping/" target="_blank">PGP Key</a>)</p>
|
|
</div>
|
|
<div class="block">
|
|
<nav>
|
|
<!--<a href="#">contact</a>-->
|
|
<a href="https://github.com/VictorWesterlund" ping="https://api.victorwesterlund/log/ping/" target="_blank">github</a>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="myface">
|
|
<picture>
|
|
<source srcset="assets/img/myface/highres.avif" type="image/avif" media="(min-width: 1920px)">
|
|
<source srcset="assets/img/myface/highres.webp" type="image/webp" media="(min-width: 1920px)">
|
|
<source srcset="assets/img/myface/mediumres.avif" type="image/avif">
|
|
<source srcset="assets/img/myface/mediumres.webp" type="image/webp">
|
|
<img src="assets/img/myface/mediumres.png" type="image/png">
|
|
</picture>
|
|
</div>
|
|
</main>
|
|
<script src="assets/js/script.js" type="module"></script>
|
|
<script src="assets/js/nomodule.js" nomodule></script>
|
|
</body>
|
|
</html>
|