El atributo de tipo de incrustación HTML contiene el contenido de media_type. Se utiliza para especificar el tipo de medio del contenido incrustado.
Sintaxis:
<embed type="media_type">
Valores de atributos:
- media_type: Contiene el contenido media_type. Se utiliza para especificar el tipo de medio del contenido incrustado.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML embed type Attribute</title> <style> q { color: #00cc00; font-style: italic; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML embed type Attribute</h2> <br> <embed src="loading2.swf" type="application/x-shockwave-flash"> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de tipo incrustado HTML se enumeran a continuación:
- Google Chrome 1 y superior
- Edge 79 y superior
- Internet Explorer no es compatible
- Firefox 1 y superior
- Ópera 12.1 y superior
- Safari 4 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