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