El atributo HTML <embed> src se utiliza para especificar la dirección web del contenido incrustado.
Sintaxis:
<embed src="URL">
Valores de atributos:
- URL: Se utiliza para especificar la dirección web del contenido incrustado.
- Una URL absoluta: apunta a otra página web.
- Una URL relativa: apunta a un archivo dentro de un sitio web.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML embed src Attribute</title> <style> q { color: #00cc00; font-style: italic; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML embed src Attribute</h2> <br> <embed src="loading2.swf" width="400px" height="300px" type="application/x-shockwave-flash"> </body> </html>
Producción :
Navegadores compatibles: los navegadores compatibles con el atributo HTML incrustado src se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- Internet Explorer 6 y superior
- Firefox 1 y superior
- Apple Safari 4 y superior
- Ópera 12.1 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA