This commit is contained in:
2025-11-27 22:25:36 +00:00
commit c1667681e7
117 changed files with 91960 additions and 0 deletions

35
youtube.html Normal file
View File

@@ -0,0 +1,35 @@
<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>