41 lines
855 B
HTML
41 lines
855 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>odot.space</title>
|
|
<style>
|
|
body {
|
|
background-color: #f5f5f5;
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
color: #333;
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
font-size: 2rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
a {
|
|
color: #0066cc;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to odot.space</h1>
|
|
<p>Our workshop collective is getting ready. Stay tuned!</p>
|
|
<p><a href="mailto:hello@odot.space">hello@odot.space</a></p>
|
|
</body>
|
|
</html>
|