-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·36 lines (33 loc) · 829 Bytes
/
index.html
File metadata and controls
executable file
·36 lines (33 loc) · 829 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Responsive Iframe</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<style>
#myIframe {
border: 5px solid cornflowerblue;
}
</style>
</head>
<body>
<div style="background-color: #f5b162; height: 80px">
<h1>Above iframe</h1>
</div>
<div class="container">
<iframe
id="myIframe"
src="iframe.html"
frameborder="0"
width="100%"
scrolling="no"
></iframe>
</div>
<div style="background-color: #495ca5; height: 80px;">
<h1>Below iframe</h1>
</div>
<script src="parent.js"></script>
</body>
</html>