-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvideo.html
More file actions
20 lines (19 loc) · 718 Bytes
/
video.html
File metadata and controls
20 lines (19 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Video playing
</title>
</head>
<body>
<video autoplay loop muted width="1280">
<source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" type="video/mp4">
</video>
<video autoplay loop muted width="1280">
<source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerFun.mp4" type="video/mp4">
</video>
<video autoplay loop muted width="1280">
<source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/Sintel.mp4" type="video/mp4">
</video>
</body>
</html>