-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiframe_page.html
More file actions
37 lines (33 loc) · 814 Bytes
/
Copy pathiframe_page.html
File metadata and controls
37 lines (33 loc) · 814 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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Iframe Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
iframe {
width: 100%;
height: 200px;
border: 1px solid #ccc;
margin-bottom: 20px;
}
button:hover {
background-color: #f0f0f0;
}
</style>
</head>
<body>
<h1>Nested Iframes Page</h1>
<iframe src="nested_iframe_1.html"></iframe>
<iframe src="nested_iframe_2.html"></iframe>
<script>
function displayText(id, text) {
document.getElementById(id).innerText = text;
}
</script>
</body>
</html>