Answer for exercise 5

main
Oliver Stolle 2026-03-20 10:23:42 +00:00
parent c20629a44c
commit 48b4535e24
4 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="de">
<head>
<base href = "./Home/" />
<title>Damen Fahrräder</title>
</head>
<body>
<h1>Damen Fahrräder:</h1>
<h2>In den Farben: Rot Grün &amp; Blau</h2>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="de">
<head>
<base href = "./Home/" />
<title>Herren Fahrräder</title>
</head>
<body>
<h1>Herren Fahrräder:</h1>
&#x1F6B2;
</body>
</html>

View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>Fahrrad Übersicht:</title>
<base href = "./" /> <!-- Because "./Home" is treated like a file & "./Home/" doesn't exist -> "." is already "Home"-->
<meta http-equiv="refresh" content="5 URL=http://www.google.de" />
</head>
<body>
<h1>Produktpalette:</h1>
<a href="Herren/Fahrraeder.html">Herren Fahrräder</a>
<br>
<a href="Damen/Fahrraeder.html">Damen Fahrräder</a>
</body>
</html>

View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="de">
<head>
<base href = "./Home/" />
<title>Unisex Fahrräder</title>
</head>
<body>
<h1>Unisex Fahrräder:</h1>
</body>
</html>