This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
website/index.html
Sofía Aritz 77739d387f Add code styling and improve loading size
- Added Jetbrains Mono font
- Added styling for `code` and `hr` tags
- Added `background.jpg` which is 409KB instead of the old `background.png`'s 4MB
2023-01-06 23:44:39 +01:00

22 lines
759 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;1,300&family=Rubik:ital,wght@0,400;0,500;1,400;1,500&display=swap" rel="stylesheet" />
<title>sofi web</title>
<style>
.__hidden {
display: none;
}
</style>
</head>
<body>
<a class="__hidden" href="https://hachyderm.io/@sofiaritz">Mastodon</a>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>