2024-05-28 14:25:32 +02:00
|
|
|
<!DOCTYPE html>
|
2024-05-28 16:43:25 +02:00
|
|
|
<html lang="en">
|
2024-05-28 14:25:32 +02:00
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
2024-05-28 16:43:25 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Tooloop Kiosk Browser</title>
|
|
|
|
|
<style>
|
|
|
|
|
* {
|
|
|
|
|
font-family: system-ui, sans-serif;
|
|
|
|
|
font-weight: lighter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
background-color: black;
|
|
|
|
|
display: flex;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, p {
|
|
|
|
|
color: darkslateblue;
|
|
|
|
|
margin: 0.25em;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2024-05-28 14:25:32 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2024-05-28 16:43:25 +02:00
|
|
|
<h1>Tooloop Kiosk Browser</h1>
|
|
|
|
|
<p>www.tooloop.de</p>
|
2024-05-28 14:25:32 +02:00
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|