Deploy Website / deploy (push) Successful in 2s
Co-authored-by: Copilot <copilot@github.com>
29 lines
1002 B
HTML
29 lines
1002 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<title>Dein Burgerrechner</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
padding: 50px;
|
|
background-color: #221600;
|
|
color: orange;
|
|
}
|
|
h1 {
|
|
color: tomato;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Die Burger werden noch gewendet ...</h1>
|
|
<p>Wir arbeiten daran, Ihnen etwas Großartiges zu bieten. Bitte schauen Sie bald wieder vorbei!</p>
|
|
<p><img src="burgerrechner.svg" alt="Logo Burgerrechner" width="33%"></p>
|
|
</body>
|
|
</html> |