This commit is contained in:
2026-03-18 13:45:20 +01:00
parent 18bf2fe579
commit 0f426c8ff7
+48
View File
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Meine Website</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
text-align: center;
margin: 0;
padding: 0;
}
.container {
margin-top: 100px;
}
h1 {
color: #333;
}
p {
color: #666;
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #007acc;
color: white;
text-decoration: none;
border-radius: 5px;
}
a:hover {
background-color: #005f99;
}
</style>
</head>
<body>
<div class="container">
<h1>Hallo 👋</h1>
<p>Ich bin [Dein Name] und studiere Medieninformatik.</p>
<p>Willkommen auf meiner ersten GitHub-Website!</p>
<a href="#">Mein Lebenslauf</a>
</div>
</body>
</html>