forked from terrill/AU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.html
executable file
·83 lines (73 loc) · 1.98 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Video Exercises</title>
<style>
body {
margin: 0 1em;
font-family: Arial, Helvetica, sans-serif;
color: black;
background: white;
font-size: 1.1em;
line-height: 1.5em;
width: 75%;
}
header {
border-bottom: #340449 solid 2px;
}
footer {
clear: left;
margin-top: 2em;
padding-top: 1em;
border-top: thin #ccc solid;
font-size: 0.9em;
}
h1 {
line-height: 1em;
}
video {
width: 640px;
height: 480px;
background-color: black;
}
.question {
border: thin solid #340449;
background-color: #ffc;
margin-bottom: 1em;
padding: 0 1em;
}
.question h3 {
font-size: 1.1em;
}
</style>
<script>
</script>
</head>
<body>
<h1>Video Exercises</h1>
<p>Please watch each of the following two videos. Each video is accompanied by a question. Please discuss that question with your group.</p>
<h2>Video #1</h2>
<video id="video1" width="480" height="360" controls>
<source src="http://staff.washington.edu/tft/talks/edu12/video1.mp4" type="video/mp4">
<source src="http://staff.washington.edu/tft/talks/edu12/video1.ogv" type="video/ogg">
</video>
<div class="question">
<h3>Video #1 Discussion Question</h3>
<ol>
<li>According to University of Washington president Michael K. Young, what are three reasons why accessibility an important value at the university?</li>
</ol>
</div>
<h2>Video #2</h2>
<video id="video2" width="480" height="360" controls>
<source src="http://staff.washington.edu/tft/talks/edu12/video2.mp4" type="video/mp4">
<source src="http://staff.washington.edu/tft/talks/edu12/video2.ogv" type="video/ogg">
</video>
<div class="question">
<h3>Video #2 Discussion Question</h3>
<ol>
<li>Given the three institutions represented by the speakers in this clip, what might you conclude about the relationship between size of institution, geographic location, and IT accessibility strategy?</li>
</ol>
</div>
</body>
</html>