Atributo HTML <iframe> src

❮ Tag HTML <iframe>

Exemplo

Um <iframe> em seu uso mais simples:

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

Definição e uso

O srcatributo especifica o endereço do documento a ser incorporado em um iframe.


Suporte ao navegador

Attribute
src Yes Yes Yes Yes Yes

Sintaxe

<iframe src="URL">

Valores de atributo

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")

❮ Tag HTML <iframe>