Files
kiosk-menu-image/index.html
2026-01-22 01:18:46 +00:00

30 lines
733 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-image</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 */
}
img {
width: 100vw;
height: 100vh;
display: block;
object-fit: cover;
}
</style>
</head>
<body>
<img src="*LOCATION/menu.png" alt="Menu Image">
</body>
</html>