23 lines
370 B
HTML
23 lines
370 B
HTML
<!doctype html>
|
|
<html>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
background: black;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
justify-content: center;
|
|
}
|
|
|
|
video {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
</style>
|
|
<video autoplay loop src="ceboola_gradient.mkv" />
|
|
</html>
|