-
Notifications
You must be signed in to change notification settings - Fork 0
/
5.project_iframe.html
47 lines (43 loc) · 2.09 KB
/
5.project_iframe.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
<!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">
<style>
body{
margin-bottom: 300px;
}
</style>
<title>IFrame | HTML</title>
</head>
<body>
<div>
<h2> Local Web Pages</h2>
<iframe src="3.html_unorderedlist_with_css.html" frameborder="1"></iframe>
<iframe src="1.paragraph.html"frameborder="1"></iframe>
<iframe src="4.project_1.html"frameborder="1"></iframe>
<br><br>
<iframe src="4.project_1.html"frameborder="1" width="600px"
height="350px" style="display:block; margin:auto;" ></iframe>
</div>
<div>
<h2>Another Website in our page</h2>
<iframe src="https://www.wikipedia.org/" frameborder="1"></iframe>
<iframe src="https://www.quora.com/" frameborder="1"></iframe>
</div>
<div>
<h2>Another type of file in our page</h2>
<iframe src="resources/bihar-rte-rules_english .pdf"frameborder="0" width="600px" height="300px"></iframe>
</div>
<div>
<h2>Youtube Video in our page</h2>
<iframe width="560" height="315" src="https://www.youtube.com/embed/f3dm1Uw26OE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div>
<h2>GoogleMap in our page </h2>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14307.441814158788!2d87.25985821893983!3d26.298623471184108!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39ef9955ca94dc51%3A0xb451f994a02322ae!2sPokhar%20Basti%2C%20Forbesganj%2C%20Bihar%20854318!5e0!3m2!1sen!2sin!4v1680838266016!5m2!1sen!2sin"
width="360" height="315" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</body>
</html>