27 lines
810 B
HTML
27 lines
810 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Garten</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link href="/static/css/style.css" rel="stylesheet">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Garten</h1>
|
||
|
<div class="center">
|
||
|
<a href="/greenhouse_1">Gewächshaus 1</a><br>
|
||
|
<a href="/greenhouse_2">Gewächshaus 2</a><br>
|
||
|
<a href="/garden">Gemüsegarten</a>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
<footer>
|
||
|
<nav>
|
||
|
<a href="/">Home</a> | 
|
||
|
<a href="/greenhouse_1" class="center">Gewächshaus 1</a> | 
|
||
|
<a href="/greenhouse_2" class="center">Gewächshaus 2</a> | 
|
||
|
<a href="/garden" class="center">Gemüsegarten</a>
|
||
|
</nav>
|
||
|
</footer>
|
||
|
</html>
|