-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 853 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 853 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video</title>
</head>
<body>
<h1>Video</h1>
<video width="320" height="240" controls>
<source src="https://youtu.be/VZBdNv_kzkk" type="video/mp4"/>
</video><br>
<h1>Iframe</h1>
<iframe width="280" height="500"
src="https://player.vimeo.com/progressive_redirect/playback/756020656/rendition/540p/file.mp4?loc=external&oauth2_token_id=57447761&signature=633cf42fe363b5b6e89160f4c1493f5c6a0a3306bdd0ac23b9165350143461ca"></iframe>
<h1>My Multimedia Website</h1>
<h2>Image</h2>
<img src="./image.jpg" height="300px"/>
<h2>Audio</h2>
<audio controls>
<source src="./drive-breakbeat-173062.mp3" type="audio"/>
</audio>
</body>
</html>