-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideos.html
57 lines (57 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ScudBt's Videos</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header">
<h1>ScudBt's Videos</h1>
</div>
<div class="nav-bar">
<div class="tab">
<a href="index.html">Home</a>
</div>
<div class="tab extra">
<a href="images.html">Images</a>
</div>
<div class="tab extra current">
<a href="videos.html">Videos</a>
</div>
<div class="tab extra">
<a href="projects.html">Projects</a>
</div>
</div>
<div class="videos">
<div class="video main-video">
<video class="v" controls>
<source src="videos/Time%20Lapse%20Video%20Of%20Night%20Sky.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<h3>Wheat Paddock</h3>
</div>
<div class="video">
<video class="v" controls>
<source src="videos/Pexels%20Videos%204631.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<h3>Sunset on the Steppe</h3>
</div>
<div class="video">
<video class="v" controls>
<source src="videos/Pexels%20Videos%201448735.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<h3>Exploring the Forest</h3>
</div>
<div class="video">
<video class="v" controls>
<source src="videos/Pexels%20Videos%201580455.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<h3>Maple Boulevard Towards the Nature</h3>
</div>
</div>
</body>
</html>