-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 30ce177
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html lang="de"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<meta name="description" content="Diese Domain wurde registriert und eine Webseite wird bald verfügbar sein."> | ||
<meta name="author" content="Ihr Name"> | ||
<title>der-rettungsingenieur.de</title> | ||
<style> | ||
body { | ||
margin: 0; | ||
font-family: Arial, sans-serif; | ||
background: linear-gradient(135deg, #3498db, #2ecc71); | ||
height: 100vh; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
color: white; | ||
text-align: center; | ||
} | ||
|
||
h1 { | ||
font-size: 3em; | ||
margin-bottom: 0.5em; | ||
} | ||
|
||
p { | ||
font-size: 1.5em; | ||
} | ||
|
||
footer { | ||
position: absolute; | ||
bottom: 10px; | ||
width: 100%; | ||
text-align: center; | ||
font-size: 0.9em; | ||
color: rgba(255, 255, 255, 0.8); | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<h1>Willkommen bei der-rettungsingenieur.de</h1> | ||
<p>Diese Domain wurde registriert.<br>Die Webseite wird bald verfügbar sein.</p> | ||
<p>Bei Fragen wenden Sie sich gerne an [email protected]</p> | ||
</div> | ||
<footer> | ||
© 2024 der-rettungsingenieur.de – Alle Rechte vorbehalten | ||
</footer> | ||
</body> | ||
|
||
</html> |