1. 程式人生 > >【程式碼筆記】Web-HTML-框架

【程式碼筆記】Web-HTML-框架

一,效果圖。

二,程式碼。

複製程式碼
<!DOCTYPE html>
<html> <head> <meta charset="utf-8"> <title>html 框架</title> </head> <body> <!--iframe 設定高度與寬度--> <iframe src="demo_iframe.htm" width="200" height="200"></iframe> <!--Iframe - 移除邊框--> <iframe src="demo_iframe.htm" width="200" height="200" frameborder="0"></iframe> <!--使用iframe來顯示目錄連結頁面--> <iframe src="demo_iframe.htm" name="iframe_a"></iframe> <p><a href="http://www.baidu.com" target="iframe_a">runoob.com</a></p> </body> </html>
複製程式碼

 

參考資料:《菜鳥教程》

一,效果圖。

二,程式碼。

複製程式碼
<!DOCTYPE html>
<html> <head> <meta charset="utf-8"> <title>html 框架</title> </head> <body> <!--iframe 設定高度與寬度--> <iframe src="demo_iframe.htm" width="200" height="200"></iframe> <!--Iframe - 移除邊框--> <iframe src="demo_iframe.htm" width="200" height="200" frameborder="0"></iframe> <!--使用iframe來顯示目錄連結頁面--> <iframe src="demo_iframe.htm" name="iframe_a"></iframe> <p><a href="http://www.baidu.com" target="iframe_a">runoob.com</a></p> </body> </html>
複製程式碼

 

參考資料:《菜鳥教程》