Create index.html
This commit is contained in:
parent
49294c9b98
commit
c39899740e
1 changed files with 41 additions and 0 deletions
41
www/index.html
Normal file
41
www/index.html
Normal file
|
@ -0,0 +1,41 @@
|
|||
<!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>
|
Loading…
Add table
Reference in a new issue