Files
test/youtube.html
2025-11-27 22:25:36 +00:00

36 lines
801 B
HTML

<html>
<head>
<style>
body {
overflow-y: hidden;
overflow-x: hidden;
border: 0;
padding:0px;
margin:0px;
}
iframe{
display: block; /* iframes are inline by default */
height: 100vh; /* Set height to 100% of the viewport height */
width: 100vw; /* Set width to 100% of the viewport width */
border: 0; /* Remove default border */
padding:0px;
margin:0px;
}
</style>
</head>
<script>
setTimeout(function(){
window.location.reload(1);
}, 30000*60);
</script>
<body>
<iframe src="https://www.youtube.com/embed/PRB70sO5MZM?autoplay=1&mute=1" title="YouTube video player" frameborder="0" marginheight="0" marginwidth="0" allow="autoplay; clipboard-write; encrypted-media; web-share" allowfullscreen></iframe>
</body>
</html>