Атрибут 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>