49 lines
1.0 KiB
HTML
49 lines
1.0 KiB
HTML
<!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>
|