27 lines
631 B
HTML
27 lines
631 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Meldestelle Web</title>
|
|
<style>
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: #f5f5f5;
|
|
}
|
|
#compose-target {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<script type="application/javascript" src="meldestelle-web.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="compose-target"></div>
|
|
</body>
|
|
</html>
|