-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspotlight.html
53 lines (45 loc) · 1.32 KB
/
spotlight.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
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Object Spotlight Videos</title>
</head>
<body>
<!-- Make a Table: The screen is 2732x2048px. -->
<!-- This is for BTS Videos. Make a table with a title, 4 videos, and a bottom row of 4 cells. -->
<script type="text/javascript" src="videofullscreen.js"></script>
<table class="tg"><tbody>
<tr>
<td class="tg-title" colspan="4">Object Spotlight Videos</td>
</tr>
<tr>
<td class="tg-big" colspan="2">
<video controls id="myVideo" height="370" width="665" >
<source src="../wam-ipad-videos-main/SPOT1.mp4" type="video/mp4" />
</video><br />
<b>Gauntlet</b>
</td>
<td class="tg-big" colspan="2">
<video controls id="myVideo" height="370" width="665" >
<source src="../wam-ipad-videos-main/SPOT2.mp4" type="video/mp4" />
</video><br />
<b>Spotlight Video 2</b>
</td>
</tr>
<tr>
<td class="tg-big" colspan="2">
<video controls id="myVideo" height="370" width="665" >
<source src="../wam-ipad-videos-main/SPOT3.mp4" type="video/mp4" />
</video><br />
<b>Spotlight Video 3</b>
</td>
<td class="tg-big" colspan="2">
<video controls id="myVideo" height="370" width="665" >
<source src="../wam-ipad-videos-main/SPOT4.mp4" type="video/mp4" />
</video><br />
<b>Spotlight Video 4</b>
</td>
</tr>
</tbody>
</table>
</body>
</html>