23 lines
506 B
HTML
23 lines
506 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Auto Refresh</title>
|
|
<script>
|
|
setTimeout(function () {
|
|
window.location.reload();
|
|
}, 30000); // 30 Sekunden (30000 Millisekunden)
|
|
</script>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
text-align: center;
|
|
margin-top: 2em;
|
|
color: #444;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Diese Seite wird alle 30 Sekunden automatisch neu geladen.</p>
|
|
</body>
|
|
</html> |