32 lines
742 B
HTML
32 lines
742 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.0">
|
||
|
|
||
|
<link rel="stylesheet" href="/style.css">
|
||
|
<style>
|
||
|
* {
|
||
|
margin: auto;
|
||
|
padding: 0 !important;
|
||
|
}
|
||
|
body {
|
||
|
width: 100vw;
|
||
|
max-width: 100vw;
|
||
|
padding: 0;
|
||
|
background-color: black;
|
||
|
}
|
||
|
video {
|
||
|
width: 100vw;
|
||
|
max-width: 100%;
|
||
|
max-height: 100%;
|
||
|
}
|
||
|
</style>
|
||
|
<title>Playing video in browser</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<video controls src="/download{DOWNLOAD_URL}"></video>
|
||
|
</body>
|
||
|
</html>
|