contact/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 |
<!--
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="https://static.gil.is/css/infopage.css">
</head>
<body>
<header>
<a href="/">Home</a> › Contact
</header>
<main>
<h1>Contact</h1>
<p>© 2022 Gil Oliveira. All rights reserved.</p>
<p>Cute doodle by <a href="https://heyheymomo.com">Hey Hey Momo</a></p>
<h2>Open source</h2>
<p>The code used to make this website is available under an MIT license.</p>
<h2>Privacy</h2>
<p>I take your privacy very very seriously.</p>
<p>You can consult our privacy policy <a href="https://privacy.giloliveira.net/">here</a>.</p>
</main>
</body>
</html>
|