Spaces:
Sleeping
Sleeping
File size: 501 Bytes
1954d41 2c6983b 1954d41 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live Video Stream</title>
<style>
body { text-align: center; font-family: Arial, sans-serif; }
img { width: 80%; max-width: 800px; border: 5px solid black; }
</style>
</head>
<body>
<h1>Live Video Feed</h1>
<img src="/video" alt="Live Video Stream" style="width: 100%; max-width: 800px; height: auto;">
</body>
</html>
|