-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththe_hu.html
More file actions
31 lines (31 loc) · 887 Bytes
/
Copy paththe_hu.html
File metadata and controls
31 lines (31 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>The Hu - Go Live Go</title>
<style>
body, html {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.video-container {
position: relative;
height: 100%;
width: 100%;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="video-container">
<iframe src="https://www.youtube.com/embed/uq9YcCRhrB0?rel=0&autoplay=1&si=MB8k5d0ikT8AifK5&controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</body>
</html>