这就是我所拥有的。我错过了什么?我需要导航栏在星期一之前向右移动,目前在左侧
<html>
<head>
<title>HTML and JavaScript </title>
</head>
<frameset border="5"rows="60,*">
<frame name="UpperFrame" noresize src="title.html">
<frameset border="5" cols="180,*">
<frame name="rightframe" noresize src="navbar.html">
<frame name="leftframe" noresize src="welcome.html">
</frameset>
</html>
答案 0 :(得分:0)
Here is the correct code.
<frameset rows="60,*">
<frame name="UpperFrame" noresize src="title.html">
<frameset cols="*,180">
<frame name="leftframe" noresize src="welcome.html">
<frame name="rightframe" noresize src="navbar.html">
</frameset>
</frameset>