Raumkommander commited on
Commit
1954d41
·
verified ·
1 Parent(s): b87a4ca

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +16 -0
templates/index.html ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Live Video Stream</title>
7
+ <style>
8
+ body { text-align: center; font-family: Arial, sans-serif; }
9
+ img { width: 80%; max-width: 800px; border: 5px solid black; }
10
+ </style>
11
+ </head>
12
+ <body>
13
+ <h1>Live Video Feed</h1>
14
+ <img src="/video" alt="Live Video Stream">
15
+ </body>
16
+ </html>