28 lines
902 B
HTML
28 lines
902 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>my socials</title>
|
|
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
|
|
</head>
|
|
<body>
|
|
<h1>here are my socials</h1>
|
|
|
|
<ul>
|
|
<li><a href="https://catgirlthighhighs.tumblr.com/" target="_blank"
|
|
aria-label="opens external site in a new window">tumblr</a></li>
|
|
<li><a href="https://github.com/amberisvibin" target="_blank"
|
|
aria-label="opens external site in a new window">github</a></li>
|
|
<li><a href="https://www.youtube.com/channel/UC1Xk5gPhVBapmSgdC0xAlbw" target="_blank"
|
|
aria-label="opens external site in a new window">youtube</a></li>
|
|
</ul>
|
|
|
|
<footer>
|
|
<a href="/">back home</a>
|
|
|
|
<p><i>Updated Jan 12, 2022</i></p>
|
|
</footer>
|
|
</body>
|
|
</html>
|