27 lines
869 B
HTML
27 lines
869 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Danke!</title>
|
|
<link rel="stylesheet" href="../css/style.css" />
|
|
<style>
|
|
.center-wrap{min-height:60vh;display:grid;place-items:center;padding:2rem}
|
|
.thanks{
|
|
max-width:680px;margin:auto;background:var(--surface);border:1px solid var(--line);
|
|
border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);text-align:center;
|
|
}
|
|
.thanks h1{margin-top:0}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="center-wrap">
|
|
<div class="thanks">
|
|
<h1>Danke für dein Feedback! 🙌</h1>
|
|
<p>Deine Nachricht wurde erfolgreich gesendet.</p>
|
|
<a href="myPortfolio.html" class="btn primary" style="display:inline-block;margin-top:1rem">Zur Startseite</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|