31 lines
508 B
HTML
31 lines
508 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Gewächshaus</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
font-size: 4vw;
|
|
margin: 1em;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
div {
|
|
overflow: hidden;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Gewächshaus</h1>
|
|
TODO
|
|
</body>
|
|
</html> |