blob: d831bad796b824222da6364ed3c344e0e4346666 (
plain)
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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>IFrame test harness</title>
<style type="text/css" media="screen">
body {
background-color:#ccc;
height:4000px;
}
iframe {
border:4px solid orange;
width:800px;
height:600px;
}
h2 { margin: 4px; }
</style>
</head>
<body>
<h2>IFrame test page</h2>
<iframe src="http://www.bing.com"></iframe>
</body>
</html>
|