37 lines
788 B
HTML
37 lines
788 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<style>
|
||
|
html,
|
||
|
body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
/* Space from this element (entire page) and others*/
|
||
|
padding: 0;
|
||
|
/*space from content and border*/
|
||
|
border: none;
|
||
|
overflow: hidden;
|
||
|
display: block;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
#video-player {
|
||
|
width: 92%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<title>Isaac's Stream</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<iframe id="video-player" src="https://live.shoebottom.ca/embed/video" title="Owncast" referrerpolicy="origin" scrolling="no"
|
||
|
allowfullscreen>
|
||
|
</iframe>
|
||
|
</body>
|
||
|
|
||
|
</html>
|