-
Notifications
You must be signed in to change notification settings - Fork 0
/
videos.html
90 lines (78 loc) · 2.34 KB
/
videos.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
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GP4SKPBTEX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GP4SKPBTEX');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="img/TempleOS.png">
<meta content="The Temple Of Terry 👨💻" property="og:title" />
<meta content="Just a website as a memorial of Terry Davis" property="og:description" />
<meta content="https://www.templeofterry.cf/" property="og:url" />
<meta content="https://www.templeofterry.cf/img/TempleOS.png" property="og:image" />
<meta name="twitter:card" content="summary_large_image">
<meta content="#5ffeff" data-react-helmet="true" name="theme-color" />
<script src="https://vjs.zencdn.net/7.20.3/video.min.js"></script>
<link href="https://vjs.zencdn.net/7.20.3/video-js.css" rel="stylesheet"/>
<title>The Temple Of Terry 👨💻</title>
</head>
<body>
<button class="backButton"><a href="/">Go back</a></button>
<br>
<br>
<!--Videos-->
<video
id="Terry"
class="video-js"
controls
preload="auto"
poster="img/terry.png"
width="320"
height="240"
data-setup='{}'>
<source src="videos/terry.webm" type="video/webm"></source>
</video>
<br>
<video
id="entertain_god"
class="video-js"
controls
preload="auto"
poster="img/entertain_god.png"
width="320"
height="240"
data-setup='{}'>
<source src="videos/entertain_god.webm" type="video/webm"></source>
</video>
<br>
<video
id="monkey_music"
class="video-js"
controls
preload="auto"
width="320"
height="240"
data-setup='{}'>
<source src="videos/monkey_music_1.webm" type="video/webm"></source>
</video>
<br>
<video
id="a_mission_from_god"
class="video-js"
controls
preload="auto"
width="320"
height="240"
data-setup='{}'>
<source src="videos/a_mission_from_god.webm" type="video/webm"></source>
</video>
</body>
</html>