效果图:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.left{
width: 20%;
float: left;
}
.left a{
display: block;
text-align: center;
margin-bottom: 10px;
text-decoration: none;
font-size: 18px;
}
.right{
width: 80%;
float: left;
}
</style>
</head>
<body>
<div class="wrap">
<div class="left">
<a href="index.htm" target="rightframe">首页</a>
<a href="page.htm" target="rightframe">次页</a>
<a href="menu.htm" target="rightframe">目录</a>
<a href="personal.html" target="rightframe">个人简介</a>
</div>
<div class="right">
<iframe src="index.htm" frameborder="0" name="rightframe" width="100%" height="800px"></iframe>
</div>
</div>
</body>
</html>