Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Video Player</title>
5
</head>
6
<body>
7
8
<h2>Full Stack Lesson Video</h2>
9
<video controls width="640" height="360" poster="poster_cover.jpg">
10
<source src="lesson_demo.mp4" type="video/mp4">
11
<source src="lesson_demo.webm" type="video/webm">
12
Your browser does not support HTML5 video.
13
</video>
14
15
</body>
16
</html>
