You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
368 B
HTML
19 lines
368 B
HTML
6 years ago
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>Iframes</title>
|
||
|
</head>
|
||
|
<style>
|
||
|
body{
|
||
|
background-color: lightgrey;
|
||
|
}
|
||
|
iframe{
|
||
|
width: 30%;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
</style>
|
||
|
<body>
|
||
|
<iframe src="iframes.1.html"></iframe>
|
||
|
<iframe src="iframes.2.html"></iframe>
|
||
|
<iframe src="iframes.3.html"></iframe>
|
||
|
</body>
|
||
|
</html>
|