第一种:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<marquee direction="right" style="color: royalblue;">随便看看</marquee>
<iframe src="gerendiaocha.html" width="500" height="900" frameborder="0" scrolling="no"></iframe>
<iframe src="index.html" width="800" height="900" frameborder="0" scrolling="yes"></iframe>
</body>
</html>
第二种:不能有<body></body>标签
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<!--网页中嵌套网页-->
<frameset rows="300,*">
<frame src="index.html"></iframe>
<frame src="gerendiaocha.html"></iframe>
</frameset>
</html>