Seite erstellt

This commit is contained in:
RuteMooth
2024-04-17 08:53:49 +02:00
parent 128897cf38
commit a307ec2cb6
2 changed files with 106 additions and 9 deletions

View 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;
}