<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Edit profile – MyGolfMoment</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: black;
overflow: hidden;
}
video {
width: 100vw;
height: 100vh;
object-fit: contain; /* IMPORTANT */
background: black;
}
</style>
</head>
<body>
<video
controls
autoplay
playsinline
webkit-playsinline
>
<source src="../tutorials/edit_profile.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
</html>