64 lines
1.6 KiB
HTML
64 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Versandlabel</title>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<style>
|
|
@page {
|
|
margin: 0;
|
|
padding: 0;
|
|
size: 2046mm 360mm;
|
|
}
|
|
|
|
:root {
|
|
--container-width: 2046mm;
|
|
--container-height: 360mm;
|
|
}
|
|
|
|
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Outfit";
|
|
width: var(--container-width); /* Breite des Containers */
|
|
height: var(--container-height); /* Höhe des Containers */
|
|
font-size: 40px;
|
|
}
|
|
|
|
.large-container {
|
|
width: var(--container-width); /* Breite des Containers */
|
|
height: var(--container-height); /* Höhe des Containers */
|
|
background-color: #ddd; /* Hintergrundfarbe */
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.container {
|
|
height: var(--container-height); /* Höhe des Containers */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="large-container">
|
|
<h1 style="">Von SHINNEX für Annete</h1>
|
|
|
|
<div style="display: flex; flex-direction: column; align-items: center">
|
|
<h1>Folge uns</h1>
|
|
<img src="instagram-logo.png" width="80px" />
|
|
<h1>SHINNEX</h1>
|
|
</div>
|
|
|
|
<div style="display: flex; flex-direction: column; align-items: center">
|
|
<h1>Folge uns</h1>
|
|
<img src="tiktok-logo.png" width="80px" />
|
|
<h1>SHINNEX</h1>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|