Finish 6,7,8

This commit is contained in:
S170H
2023-10-18 15:46:23 +02:00
parent 3e697d1be6
commit 5f96533f1f
2 changed files with 139 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<style>
h1 {
font-family: Arial;
text-decoration-line: underline;
}
.untertitel {
font-family: Arial;
font-style: italic;
}
.haupt {
font-family: Arial;
font-weight: bold;
}
.beilage {
font-family: Arial;
font-weight: normal;
color: green;
}
</style>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>Currywurst mit Pommes</h1>
<h3 class="untertitel">Der Klassiker</h3>
<ul class="haupt">
<li>Bratwurst</li>
<li class="beilage">Fritten</li>
<li>Currysauce</li>
</ul>
</body>
</html>