html stuff ; very boring boilerplate stuff

This commit is contained in:
2026-04-15 11:15:39 +02:00
parent a22be96419
commit 00fae82fb7
7 changed files with 178 additions and 0 deletions

50
html/stadien/index.html Normal file
View File

@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles/index.css" rel="stylesheet">
<title>Austragungssorte</title>
</head>
<body>
<h1>Austragungsorte</h1>
<table>
<tr>
<td>
<strong>Westregion</strong>
<ul>
<li>Vancouver (BC Place)</li>
<li>Seattle (Lumen Field)</li>
<li>San Francisco (Levis Stadium)</li>
<li>Los Angeles (SoFi Stadium)</li>
</ul>
</td>
<td>
<strong>Mitte-Region</strong>
<ul>
<li>Guadalajara (Estadio Akron)</li>
<li>Mexiko-Stadt (Estadio Azteca)</li>
<li>Monterrey (Estadio BBVA)</li>
<li>Houston (NRG Stadium)</li>
<li>Dallas (AT&T Stadium)</li>
<li>Kansas City (Arrowhead)</li>
</ul>
</td>
<td>
<strong>Ostregion</strong>
<ul>
<li>Toronto (BMO Field)</li>
<li>Atlanta (Mercedes-Benz)</li>
<li>Miami (Hard Rock Stadium)</li>
<li>Boston (Gillette Stadium)</li>
<li>Philadelphia (Lincoln Financial)</li>
<li>New York (MetLife Stadium)</li>
</ul>
</td>
</tr>
</table>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 540 KiB

View File

@@ -0,0 +1,44 @@
body {
background-image: url("images/image.jpg");
background-size: cover;
background-position: center;
background-attachment: fixed;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
color: white;
font-family: sans-serif;
}
h1 {
margin-top: 50px;
}
table {
margin-left: auto;
margin-right: auto;
border-collapse: separate;
border-spacing: 40px 0;
}
td {
vertical-align: top;
text-align: center;
}
ul {
list-style-position: inside;
padding: 0;
}
li {
color: white;
margin-bottom: 8px;
}
strong {
display: block;
margin-bottom: 10px;
font-size: 1.1em;
}