<html>
	<head>
		<meta charset="UTF-8">
		<title>Code anzeigen</title>
	</head>
	<body>
		<pre><code><!DOCTYPE html>
		<html lang="en">
		<head>
			<meta charset="UTF-8">
			<title>Meine Website</title>
			<style>
				html, body {
					height: 100%;
				}
				body {
					background-image: linear-gradient(to bottom right, #58a5f0, #b373c9);
					color: #333;
					font-family: Arial, sans-serif;
					text-align: center;
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;
				}
				h1 {
					font-size: 3rem;
					margin-top: 3rem;
					color: #fff;
					text-shadow: 2px 2px #333;
				}
				p {
					font-size: 1.5rem;
					margin-top: 2rem;
					color: #fff;
				}
			</style>
		</head>
		<body>
			<h1>Willkommen auf meiner Website!</h1>
			<p>Ich bin begeistert, dass Sie hier sind.</p>
		</body>
	</html>
		</code></pre>
	</body>
	</html>