HTML <iframe> src 속성

❮ HTML <iframe> 태그

예시

가장 간단한 용도의 <iframe>:

<iframe src="/default.asp"></iframe>

정의 및 사용

src속성은 iframe에 포함할 문서의 주소를 지정합니다 .


브라우저 지원

Attribute
src Yes Yes Yes Yes Yes

통사론

<iframe src="URL">

속성 값

Value Description
URL Specifies the URL of the document to embed in the iframe.

Possible values:

  • An absolute URL - points to another web site (like src="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like src="default.htm")

❮ HTML <iframe> 태그