html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
<title>A video</title>
</head>
<body>
<h1>A video</h1>
<video controls>
<source src="https://cdn.pixabay.com/video/2016/09/21/5373-183629075_medium.mp4" type="video/mp4"></source>
Not supported
</video>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
body {
}
video {
width: 90vw;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run