forked from ujjwalda0/html-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiframe.html
More file actions
20 lines (19 loc) · 734 Bytes
/
iframe.html
File metadata and controls
20 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=>, initial-scale=1.0">
<title>iframe tags</title>
</head>
<body>
<H4>
iframe tags:
<h5>website ke andar website provide karne ke lie</h5>
</H4>
<iframe width="500" height="300" src="https://www.youtube.com/embed/UmnCZ7-9yDY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<hr><hr>
<h4>video tag</h4>
<video src="/vyond.mp4" height="300" width ="500" controls loop> youtube java</video>
</body>
</html>