mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-14 19:43:42 +02:00
45 lines
1.8 KiB
HTML
Executable file
45 lines
1.8 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.">
|
|
<meta name="theme-color" content="#000000">
|
|
<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)">
|
|
<link rel="stylesheet" href="assets/css/style.css">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div id="intro">
|
|
<p>hello, my name is</p>
|
|
<h1>victor</h1>
|
|
<p>I'm a</p>
|
|
<h1>full-stack</h1>
|
|
<h1>developer</h1>
|
|
<p>from Sweden</p>
|
|
<a href="#">contact me</a>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div id="card">
|
|
<img src="https://lh3.googleusercontent.com/a-/AOh14Ggkm-Fr7rjHKeJHKHNOZoM72lARq25kIJS73Wo0SU4=s128-c-rg-br100" alt="portrait of victor"/>
|
|
<div>
|
|
<p>I create things with code. When I'm not creating things with code, I enjoy skiing, watching movies and some occasional gaming</p>
|
|
<p>Beyond computer science, I'm also a armchair rabbit-holer for engineering, astronomy and physics</p>
|
|
</div>
|
|
<div>
|
|
<p>...and ☕, full-time</p>
|
|
</div>
|
|
<a href="#">stalk me 😬</a>
|
|
</div>
|
|
</div>
|
|
<script type="module">
|
|
import { default as Glitch } from "./assets/js/modules/Glitch.mjs";
|
|
//fetch("assets/media/bg64.txt").then((resp) => resp.text().then(bg64 => new Glitch(bg64, document.body)));
|
|
new Glitch(document.body)
|
|
</script>
|
|
</body>
|
|
</html>
|