32 lines
802 B
HTML
32 lines
802 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<meta name="referrer" content="no-referrer" />
|
||
|
<title>WebOas.is - NFL Network</title>
|
||
|
<script src="jquery-3.4.1.min.js"></script>
|
||
|
<script src="hls.min.js"></script>
|
||
|
<script src="mousetrap.min.js"></script>
|
||
|
<style>
|
||
|
body{
|
||
|
background-color:black;
|
||
|
}
|
||
|
#video{
|
||
|
position: absolute;
|
||
|
top: 0px;
|
||
|
right: 0px;
|
||
|
bottom: 0px;
|
||
|
left: 0px;
|
||
|
margin: auto;
|
||
|
max-height: 100%;
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<video id="video" style="width: 100%; height: 100%;" controls=""></video>
|
||
|
<script src="player.min.js"></script>
|
||
|
</body>
|
||
|
</html>
|