mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-14 11:33:41 +02:00
33 lines
1.2 KiB
HTML
Executable file
33 lines
1.2 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)">
|
|
<link rel="stylesheet" href="assets/css/style.css">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div>
|
|
<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>
|
|
<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)));
|
|
</script>
|
|
</body>
|
|
</html>
|