HTML <iframe> src Atribut

❮ HTML tag <iframe>

Příklad

<iframe> ve svém nejjednodušším použití:

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

Definice a použití

Atribut srcurčuje adresu dokumentu, který se má vložit do prvku iframe.


Podpora prohlížeče

Attribute
src Yes Yes Yes Yes Yes

Syntax

<iframe src="URL">

Hodnoty atributů

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 tag <iframe>