add placeholder webpage

This commit is contained in:
DerTyp7
2023-09-26 15:47:45 +02:00
parent 49a6c67cd4
commit 6839501c83

26
index.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<style>
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
}
h1 {
text-align: center;
margin-top: 20%;
font-size: 3rem;
}
</style>
<body>
<h1>Coming soon...</h1>
</body>
</html>