Compare commits

...

1 Commits

Author SHA1 Message Date
AnthonyxHD
8ff89a715a Ersten html-Code auf meine Webseite hinzufügen 2026-03-12 11:00:09 +01:00
3 changed files with 28 additions and 11 deletions

View File

@ -0,0 +1,7 @@
body {
background-color: antiquewhite;
}
h1 {
font-size: 3em;
}

View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feature - Anthony</title>
<link rel="stylesheet" href="anthony.css">
</head>
<body>
<h1>Willkommen</h1>
<p>Das ist die Webseite von Anthony</p>
<h2>Das ist mein Untertitel</h2>
<ul>
<li>Mit ein Paar Bullet-Points</li>
<li># 1</li>
<li># 2</li>
</ul>
</body>
</html>

View File

@ -1,11 +0,0 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feature - Anthony</title>
</head>
<body>
</body>
</html>