forked from WEB-IB-SS26/development-ib
Answer for exercise 5
parent
c20629a44c
commit
48b4535e24
|
|
@ -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 & Blau</h2>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -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>
|
||||||
|
🚲
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -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>
|
||||||
|
|
@ -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>
|
||||||
Loading…
Reference in New Issue