blob: 3b7445d7ab0e69690ba60697cee25867a4b93e57 (
plain) (
blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<!DOCTYPE html>
<html>
<head>
<style>
html {
background-color: #ccc;
font-size: 50px;
}
.frame {
text-align: center;
}
.left {
float: left;
}
.narrow {
width: 300px;
}
.wide {
width: 600px;
}
.short {
height: 360px;
}
.tall {
height: 800px;
}
iframe {
width: 300px;
border: solid 1px black;
display: block;
background-color: white;
}
.wide iframe {
width: 600px;
}
.tall iframe {
height: 660px;
}
.short iframe {
height: 300px;
}
</style>
</head>
<body>
<div class="frame tall left wide">
<iframe id="frameone" sandbox="allow-scripts" src="summit-one.html">
</iframe>
frame one
</div>
<div class="left">
<div class="frame short narrow">
<iframe id="frametwo" sandbox="allow-scripts" src="summit-two.html">
</iframe>
frame two
</div>
<div class="frame short narrow">
<iframe id="framethree" sandbox="allow-scripts" src="summit-three.html">
</iframe>
frame three
</div>
</div>
</body>
</html>
|