This commit is contained in:
Charlotte Gaskell 2025-07-28 01:37:54 +01:00
parent 43ff2a8fce
commit 98faac2c5c
Signed by: charlotte
GPG key ID: 8B93BA001088A340

75
home/index.html Normal file
View file

@ -0,0 +1,75 @@
<!DOCTYPE html>
<html>
<head>
<title>lottepup.space</title>
</head>
<body>
<h1>lottepup.space</h1>
<h3>lotte's home on the web</h3>
<h2>me</h2>
<ul>
<li><a href="https://alico.nexus/@lotte">mastodon</a></li>
</ul>
<h2>pages</h2>
<ul>
<li><a href="https://ramblings.lottepup.space">ramblings (wip)</a></li>
</ul>
<h2>services</h2>
<ul>
<li><a href="https://git.lottepup.space">git</a></li>
<li><a href="https://media.lottepup.space">media</a></li>
</ul>
<div class="footer">
<p>made by charlotte in 2025 :3 woof</p>
<p>🐶</p>
</div>
</body>
</html>
<style>
* {
font-family: monospace;
}
html {
background-color: black;
color: #ffc0cb;
}
a {
color: #ffffff;
text-decoration: none;
}
a:hover {
font-style: italic;
}
a:visited {
color: #ffffff;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
</style>