45 lines
930 B
HTML
45 lines
930 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Contact</title>
|
|
<link rel="stylesheet" href="../style.css" />
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<header>
|
|
<nav>
|
|
<a href="../">home</a> |
|
|
<a href="../links/">links</a> |
|
|
<a href="../uses/">uses</a> |
|
|
<a href="../contact/">contact</a>
|
|
</nav>
|
|
<hr class="rule" />
|
|
</header>
|
|
|
|
<main>
|
|
<h2>Contact me</h2>
|
|
<h2>Mastodon</h2>
|
|
<ul>
|
|
<li><a href="https://chaos.social/@probablygecko">chaos.social/@probablygecko</a></li>
|
|
</ul>
|
|
<hr class="rule" />
|
|
<h2>Signal</h2>
|
|
<ul>
|
|
<li>@gecko.82</li>
|
|
</ul>
|
|
<hr class="rule" />
|
|
<h2>Discord</h2>
|
|
<ul>
|
|
<li>@gecko_24</li>
|
|
</ul>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|