mirror of
https://github.com/Michatec/ptelevision_web.git
synced 2026-03-31 23:46:31 +02:00
27 lines
581 B
HTML
27 lines
581 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>NO SIGNAL</title>
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
h1 {
|
|
font-size: 50px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>NO SIGNAL</h1>
|
|
</body>
|
|
</html>
|