24 lines
392 B
HTML
24 lines
392 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Käse schließt den Magen</title>
|
|
<style type="text/css">
|
|
html {
|
|
display: table;
|
|
margin: auto;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img src="internet.png" alt="Das Internet">
|
|
</body>
|
|
</html>
|