-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.html
More file actions
25 lines (22 loc) · 730 Bytes
/
media.html
File metadata and controls
25 lines (22 loc) · 730 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adding Media in HTML Page</title>
</head>
<body>
<div>
<h3>Adding Audio Using audio tag</h3>
<audio src="Audio/1.m4a" controls></audio>
<br>
<h3>Adding Video Using video tag</h3>
<video src="Videos/1.mp4" controls autoplay height="500px" width="800px"></video>
<h3>Adding PDF Using embed tag</h3>
<div>
<embed src="PDF/1.pdf" type="application/pdf" width="500px" height="700px">
</div>
</div>
</body>
</html>