身為一個剛從機械轉(zhuǎn)到學程序的菜鳥小白傻盟,第一次寫文章速蕊,排版各方面都比較粗糙,過程也難免會有錯漏莫杈,望大神指正互例,不慎感激,寫這些也只是為了總結知識點罷了筝闹。好了媳叨,廢話不多說了。
一关顷、新建all.html###
<pre><html>
<frameset cols="120,*">
<frame name="index" src="index.html" noresize/>
<frame name="content" src="frame_a.html" noresize/>
</frameset>
</html></pre>
二糊秆、新建index.html###
<pre><html>
<head>
<style type="text/css">
a{text-decoration:none}
</style>
</head>
<body>
<a href="frame_a.html" target="content">frame_a</a><br/>
<a href="frame_b.html" target="content">frame_b</a><br/>
<a href="frame_c.html" target="content">frame_c</a>
</body>
</html></pre>
三、新建frame_a.html###
<pre><body bgcolor="red">
frame_a
</body></pre>
四议双、新建frame_b.html###
<pre><body bgcolor="yellow">
frame_b
</body></pre>
五痘番、新建frame_c.html###
<pre><body bgcolor="blue">
frame_c
</body></pre>