blob: 5263d3e67e7a2eac1bd23a635a6bfcbac5fe662d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sedona Scenes</title>
<meta charset="utf-8">
</head>
<style>
video {
width: 100%;
height: auto;
max-width:1280px;
}
</style>
<body>
<h1>Sedona Scenes</h1>
<video controls poster="11.3.sedona.jpg">
<!--
I prefer to put free formats first
I personally would have chose webm over ogv
-->
<source src="11.3.sedona.ogv" type="video/ogg">
<source src="11.3.sedona.m4v" type="video/mp4">
<a href="11.3.sedona.mov">Photos of Sedona</a> (.mov)
</video>
</body>
</html>
|