19 lines
250 B
HTML
19 lines
250 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
|
||
|
<style type="text/css">
|
||
|
video {
|
||
|
width:100%;
|
||
|
max-width:600px;
|
||
|
height:auto;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<video controls>
|
||
|
<source src="example.mp4" type="video/mp4">
|
||
|
Your browser does not support video
|
||
|
</video>
|
||
|
|
||
|
</body>
|
||
|
</html>
|