-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.html
43 lines (43 loc) · 1.34 KB
/
video.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Web Portfolio: Ben Meyer's tools page</title>
<link type="text/css" rel="stylesheet" href="Styles/MyCSS.css" media="screen">
<link rel="shortcut icon" href="Images/favicon.ico">
</head>
<body>
<nav>
<ul>
<li><a href=index.html> Home </a></li>
<li><a href=accessibility.html> Accessibility </a></li>
<li><a href=graphics.html> Graphics</a></li>
<li><a href=javascript.html> Javascript</a></li>
<li><a href=tools.html> Tools</a></li>
<li><a href=usability.html> Usability</a></li>
<li><a href=video.html> Video</a></li>
</ul>
</nav>
<h1> Web Portfolio: Video </h1>
<div></br>
<strong> Description: </strong> This is a video about Gaben Newell.
<p></p>
</div>
</br>
<video controls=""
poster="http://www.washington.edu/accesscomputing/webd2/videos/code.jpg"
preload="auto">
<source
src="http://www.washington.edu/accesscomputing/webd2/videos/code.mp4" type="video/mp4">
</source>
<source
src="http://www.washington.edu/accesscomputing/webd2/videos/code.webm" type="video/webm">
</source>
<track
kind="captions"
src="http://www.washington.edu/accesscomputing/webd2/videos/code.vtt"
srclang="en"
default>
</video>
</body>
</html>