-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path2.html
50 lines (50 loc) · 1.38 KB
/
2.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
<!DOCTYPE html>
<html>
<head>
<title>Video Player</title>
<style>
body{background-image: url(https://wallpapercave.com/wp/wp1830563.jpg); text-align: center;}
</style>
</head>
<body>
<section>
<header>
<h1 style="font-size: 200%; font-family: Comic Sans MS;">My Heart Will Go On...</h1>
</header>
</section>
<hr>
<section style="font-size: 150%;">
<nav>
<a href="https://video.search.yahoo.com/search/video?fr=mcafee&p=my+heart+will+go+on+video+streaming#action=view&id=3&vid=b3dc9313f29736a403e89547c93b87fc">Video Streaming</a>|
<a href="https://www.metrolyrics.com/my-heart-will-go-on-titanic-lyrics-celine-dion.html">Lyrics</a>
</nav>
</section>
<hr>
<section>
<h2>.mp4 File:</h2>
<video width="650" height="520" controls autoplay loop>
<source src="tit.mp4" type="video/mp4">
</video>
<br>
<video width="350" height="350" autoplay mute>
<source src="tit.mp4" type="video/mp4">
</video>
<br>
<h2>.ogg File:</h2>
<video width="650" height="520" controls autoplay loop>
<source src="tit.ogg" type="video/ogg">
</video>
<video>
<track src="tit.vtt" kind="subtitles" srclang="en" label="English">
</video>
</section>
<hr>
<section style="font-size: 150%;">
<footer>
<h3>Credits:</h3>
<h4>Movie: Titanic</h4>
<h4>Writer: Steve Tyrell</h4>
</footer>
</section>
</body>
</html>