Skip to content

內置頁框 <iframe>

在網頁中嵌入另外一個 HTML 網頁。

html
<iframe
  src="https://docs.f2e.idv.tw"
  frameborder="0"
  width="500"
  height="500"
></iframe>

src

指定要被嵌入的網站的網址。

width

內置頁框的寬度。

height

內置頁框的高度。

frameborder

內置頁框的邊框。