index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
<!--
SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com>
SPDX-License-Identifier: MIT
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gil Oliveira</title>
<link rel="icon" type="image/png" href="/static/img/img_avatar-scientist.png" />
<link rel="stylesheet" href="style.css">
<style>
.top-banner {
top: 0;
display: block;
font-family: sans-serif;
}
.top-banner>p {
color: white;
}
</style>
<!-- proven0d88d7 -->
</head>
<body>
<img class="bgimg" src="/static/img/scientist_nobg.svg" alt="Gil">
<div class="top-banner">
<p>ℹ️ This is my new website! Looking for something that used to be here? <a
href="https://legacy.giloliveira.net">Check the old one</a>.
<hr style="border: 2px white; border-style: none none dotted;">
</div>
<main>
<div class="greeting">
<p class="mainText">Hi!</p>
<p class="mainText">I'm <span class="name">Gil</span></p>
</div>
<p class="ipa">/ʒiɫ/</p>
<div>
<ul>
<li><a href="https://orcid.org/0000-0003-4638-2879">Scientist.</a></li>
<li><a href="https://git.sr.ht/~gpo">Techie.</a></li>
<li><a href="https://gil.lol">Human.</a></li>
</ul>
</div>
<div style="display: none;">
<a rel="me" href="https://social.lol/@gil"></a>
</div>
</main>
<footer>
<a href="legal">Boring legal stuff.</a>
</footer>
</body>
</html>
|