Compare commits
26 Commits
test
...
b4bfe1871e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b4bfe1871e | ||
|
|
2cf5bfbe37 | ||
|
|
e5e196b7eb | ||
|
|
2d7a60caa3 | ||
|
|
a307ec2cb6 | ||
|
|
128897cf38 | ||
|
|
7225798116 | ||
|
|
59f9f4fb05 | ||
|
|
7c181badd1 | ||
|
|
0862a58d74 | ||
|
|
adcbf8b3fc | ||
|
|
91fd455822 | ||
|
|
33a53e72bb | ||
|
|
ddd189c92c | ||
|
|
c8625c03db | ||
|
|
4eb561a1b7 | ||
|
|
68f7b11e69 | ||
|
|
88c93f39f9 | ||
|
|
7af9419964 | ||
|
|
7bd2f0abde | ||
|
|
e564f4ebf9 | ||
|
|
7c5257d20f | ||
|
|
aa4e2e9534 | ||
|
|
cfd460cd52 | ||
|
|
f6f4400152 | ||
|
|
6c8c6c0669 |
48
JereZoo/css/layout.css
Normal file
48
JereZoo/css/layout.css
Normal file
@@ -0,0 +1,48 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
header, footer {
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 20px;
|
||||
margin-bottom: 20px;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table, th, td {
|
||||
border: 1px solid #ccc;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#animal-gallery {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
#animal-gallery img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
65
JereZoo/index.html
Normal file
65
JereZoo/index.html
Normal file
@@ -0,0 +1,65 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Zoo Webseite</title>
|
||||
<link rel="stylesheet" href="css/layout.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Willkommen beim JereZoo</h1>
|
||||
</header>
|
||||
<section id="about">
|
||||
<h2>Über uns</h2>
|
||||
<p>Jeremy Zimbal, einst bekannt für seine Abneigung gegen Tiere, entdeckte durch die Rettung einer verletzten Eule namens Jere eine neue Leidenschaft für die Tierwelt. Inspiriert von dieser Erfahrung gründete er den JereZoo als einen Ort der Wunder und Bildung, wo Mensch und Tier in Harmonie zusammenleben konnten. Sein Wandel von einem Tierhasser zum Gründer eines bedeutenden Zoos hinterließ ein bleibendes Vermächtnis für die Bewohner von Jereton.</p>
|
||||
</section>
|
||||
<section id="opening-hours">
|
||||
<h2>Öffnungszeiten</h2>
|
||||
<p>Montag bis Freitag: 10:00 - 20:00</p>
|
||||
<p>Samstag und Sonntag: 8:00 - 21:00</p>
|
||||
<p>Feiertage: Geschlossen</p>
|
||||
</section>
|
||||
<section id="animals">
|
||||
<h2>Unsere Tiere</h2>
|
||||
<div id="animal-gallery">
|
||||
<!-- Hier könnten Bilder von Tieren eingefügt werden -->
|
||||
</div>
|
||||
</section>
|
||||
<section id="prices">
|
||||
<h2>Preistabelle</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Ticketart</th>
|
||||
<th>Preis</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Erwachsene</td>
|
||||
<td>19.95</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Kinder (3-12)</td>
|
||||
<td>9.95</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Senioren</td>
|
||||
<td>7.95</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Familienpaket</td>
|
||||
<td>29.95</td>
|
||||
</tr>
|
||||
</table>
|
||||
</section>
|
||||
<section id="sponsorship">
|
||||
<h2>Patenschaften</h2>
|
||||
<p>[Hier könnten Informationen über die Möglichkeit, Tiere im Zoo zu unterstützen, eingefügt werden]</p>
|
||||
<a href="patenshop.html">Zum Patenshop</a>
|
||||
</section>
|
||||
<footer>
|
||||
<p>Kontakt: Zoostraße 9 | 01243 48472 | support@jerezoo.de</p>
|
||||
<p>© 2024 JereZoo. Alle Rechte vorbehalten.</p>
|
||||
</footer>
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
0
JereZoo/js/allg.js
Normal file
0
JereZoo/js/allg.js
Normal file
BIN
Pflichtenheft.docx
Normal file
BIN
Pflichtenheft.docx
Normal file
Binary file not shown.
BIN
Projekt Definition.docx
Normal file
BIN
Projekt Definition.docx
Normal file
Binary file not shown.
BIN
Protokoll Iteration.docx
Normal file
BIN
Protokoll Iteration.docx
Normal file
Binary file not shown.
BIN
Protokoll Iteration2.docx
Normal file
BIN
Protokoll Iteration2.docx
Normal file
Binary file not shown.
Reference in New Issue
Block a user