-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·21 lines (17 loc) · 1.07 KB
/
Copy pathindex.html
File metadata and controls
executable file
·21 lines (17 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name='viewport' content='width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<title>Video Tracking API</title>
<link rel='stylesheet' type='text/css' href='css/main.css' media='all' />
<script type='text/javascript' src='js/main.js'></script>
</head>
<body onload=init();>
<video id='myVideo' width='640' height='360' poster='http://media.w3.org/2010/05/sintel/poster.png' controls>
<source src='http://media.w3.org/2010/05/sintel/trailer.mp4' type='video/mp4'></source>
<source src='http://media.w3.org/2010/05/sintel/trailer.ogv' type='video/ogg'></source>
<source src='http://media.w3.org/2010/05/sintel/trailer.webm' type='video/webm'></source>
</video>
</body>
</html>