Initial Commit

This commit is contained in:
mwiegand 2022-03-13 02:37:05 +01:00
commit 6e243a166d

42
index.html Normal file
View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: grandstander;
src: url("https://fonts.googleapis.com/css2?family=Grandstander");
}
* {
box-sizing: border-box;
}
html {
height: 100%;
}
body {
background-color: rgb(174, 232, 226);
justify-content: center;
align-items: center;
display: flex;
height: 100%;
font-size: 1.6em;
line-height: 1.4em;
font-family: "Fire Sans", "Helvetica", "Arial", sans-serif;
}
a, a:active, a:visited {
color: black;
}
</style>
</head>
<body>
<div id=message>
999 Loners wandering around Solana Beach.
<br>
Loners walk alone and in silence...
<ul>
<li><a href="https://twitter.com/LonerCrewNFT">Twitter</a></li>
<li><a href="https://discord.gg/WhGswMCmta">Discord</a></li>
</ul>
</div>
</body>
</html>