sign-lang / templates /video.html
randomLearner24's picture
Upload 7 files
43f5273 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webcam Object Detection</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #f06, #48f);
font-family: Arial, sans-serif;
color: #fff;
}
h1 {
margin-bottom: 20px;
font-size: 2.5em;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
img {
border: 5px solid #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
max-width: 90%;
height: auto;
}
</style>
</head>
<body>
<h1>Face Detection Application</h1>
<img id="video" src="/video_feed" alt="Video Feed">
</body>
</html>