Files
kiosk-menu-video/index.html
2026-01-22 01:17:07 +00:00

32 lines
819 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>kiosk-menu-video</title>
<style>
/* Ensure the media fills the entire screen without scrollbars */
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
background-color: black; /* Prevents white flash during load */
}
video {
width: 100vw;
height: 100vh;
display: block;
object-fit: cover;
}
</style>
</head>
<body>
<video src="*LOCATION/menu.avi" muted="" autoplay="" loop=""></video>
<!-- <img src="*LOCATION/menu.png" alt="Menu Image"> -->
</body>
</html>