all repos — web @ afcd3bb313eec448ed4b9b7d00ac5305e885cbe7

My personal website.

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
<!--
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="stylesheet" href="style.css">
	<style>
		.top-banner {
			top: 0;
			display: block;
			font-family: sans-serif;
		}

		.top-banner > p {
			color: white;
		}
	</style>

</head>
<body>
	<img class="bgimg" src="https://static.gil.is/svg/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.omg.lol">Human.</a></li>
			</ul>
		</div>
	</main>

	<footer>
		<a href="legal">Boring legal stuff.</a>
	</footer>
</body>
</html>