1<video controls poster="/images/w3html5.gif">
2 <source src="movie.mp4" type="video/mp4">
3 <source src="movie.ogg" type="video/ogg">
4 Your browser does not support the video tag.
5</video>
1<!DOCTYPE html>
2<html lang=en>
3
4<head>
5<title>Alison falling out of bed on Medium</title>
6</head>
7
8<body>
9
10<h1>Alison falling out of bed on Medium</h1>
11
12<video poster="PreviewImage.jpeg" width="640" height="480" controls="controls">
13 <source src="AlisonFallingOutOfBed.webm" type="video/webm" />
14 <source src="AlisonFallingOutOfBed.mp4" type="video/mp4" />
15 <source src="AlisonFallingOutOfBed.theora.ogv" type="video/ogg" />
16 Bummer, your browser does not support the video tag.
17</video>
18
19</body>
20</html>
21