1.main.html
<html> <meta charset="utf-8"> <head> <title>框架链接标志</title> </head> <!--这里来建立浏览器框架--> <frameset cols="25%,*"> <frame src="menu.html" scrolling="no" name="Left"> <frame src="page1.html" scrolling="auto" name = "Main"> <noframes> <body> <p>对不起浏览器不支持框架</p> </body> </noframes> </frameset> </html>
<html> <meta charset="utf-8"> <head> <title>目录</title> </head> <body> <p><font color="yellow">目录</font> <p><a href="page1.html" target="Main">链接到第一页</a></p> <p><a href="page2.html" target="Main">链接到第二页</a></p> </body> </html>
3.page1.html
<html> <meta charset="utf-8"> <body> <p align="center"><font color="yellow">这是第一页1111111!</p> </body> </html>
<html> <meta charset="utf-8"> <body> <p align="center"><font color="black">这是第二页111111111!</p> </body> </html>
동일한 페이지 프레임에서 2개의 다른 html을 열었습니다.
사용된 태그 알아보기 다음과 같습니다. 태그
링크 태그
1....이것은 html의 링크 태그입니다. href=""에 채워야 하는 2개의 속성이 있습니다. 링크 내용입니다. 이미지를 링크로 사용하고 싶다면 속성을 사용하면 됩니다. Picture Jump의 구체적인 작성 방법을 얻으려면 Baidu의 링크입니다, name 속성은 라벨 이름을 표시하는 데 사용되며 이는 필수입니다.
프레임 플래그
1.
는 HTML의 기본 문서에서 각 프레임의 정의를 정의하는 데 사용됩니다. 행 행 위치 지정에 사용되는 열, 열 위치 지정에 사용되는 값은 백분율 또는 별표일 수 있습니다. 시스템 기본값은 왼쪽에서 오른쪽으로, 위에서 아래로2. 표시는