Files
Tooloop-Kiosk-Browser/index.html
T
2024-05-28 16:43:25 +02:00

37 lines
764 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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>
</head>
<body>
<h1>Tooloop Kiosk Browser</h1>
<p>www.tooloop.de</p>
</body>
</html>