|
須有六個檔案,分別是: (1) index.htm:用來擺Frame的標籤,也就是規劃Frame的主要網頁。 (2) html1.htm:用來擺在A欄的網頁內容。 (3) html2.htm:用來擺在B欄的網頁內容。 (4) html3.htm:用來擺在C欄的網頁內容。 (5) html4.htm:用來擺在D欄的網頁內容。 (6) html5.htm:用來擺在E欄的網頁內容。
| |||||||||
|
<HTML> <HEAD> <TITLE>請輸入您的標題名稱 </TITLE> </HEAD> <frameset rows="33%,34%,33%"> <frame src="html1.htm" name="A"> <frameset cols="33%,34%,33%"> <frame src="html2.htm" name="B"> <frame src="html3.htm" name="C"> <frame src="html4.htm" name="D"> </frameset> <frame src="html5.htm" name="E"> </frameset> </HTML> |
解說:
|