-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmediaTag.html
More file actions
21 lines (20 loc) · 816 Bytes
/
Copy pathmediaTag.html
File metadata and controls
21 lines (20 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>Modern HTML Tag</title>
</head>
<body>
<img src="E:\Web Developement\Nikhat_Nadaf_image.png" alt="my img" height="10" width="50" aria-controls="Nikhat_Nadaf_image">
<audio src="Kahani Suno.mp3" controls>Kahani Suno</audio>
<audio controls>
<source src="Kahani Suno.mp3" type="audio/mp3">
</audio>
<video src="myvdo.mp4" controls></video>
<h2>ifram tag</h2>
<iframe src="project1.html" frameborder="0" width="500px" height="400px">Resume</iframe>
<iframe src="https://www.youtube.com/embed/DTcKkcyS410" frameborder="0"></iframe>
</body>
</html>