-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert /web/html/element/[e-z]* folder to Markdown (es) (#8208)
* Convert /web/html/element/[e-z]* folder to Markdown (es) * Apply suggestions from code review Original PR by: Queen Vinyl Da.i'gyu-Kazotetsu <[email protected]>
- Loading branch information
Showing
48 changed files
with
1,779 additions
and
2,577 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: em | ||
slug: Web/HTML/Element/em | ||
tags: | ||
- HTML | ||
- HTML:Elemento | ||
- Todas_las_Categorías | ||
translation_of: Web/HTML/Element/em | ||
original_slug: Web/HTML/Elemento/em | ||
--- | ||
{{HTMLRef}} | ||
|
||
El **elemento HTML `<em>`** es el apropiado para marcar con énfasis las partes importantes de un texto. El elemento `<em>` puede ser anidado, con cada nivel de anidamiento indicando un mayor grado de énfasis. | ||
|
||
{{EmbedInteractiveExample("pages/tabbed/em.html", "tabbed-shorter")}} | ||
|
||
| [Categorías de contenido](/es/docs/Web/Guide/HTML/categorias_de_contenido) | [Contenido dinámico](/es/docs/Web/Guide/HTML/categorias_de_contenido#Contenido_dinámico), [contenido textual o estático](/es/docs/Web/Guide/HTML/categorias_de_contenido#Contenido_textual_o_estático), contenido palpable | | ||
| -------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| Contenido permitido | [Contenido textual o estático](/es/docs/Web/Guide/HTML/categorias_de_contenido#Contenido_textual_o_estático). | | ||
| Tag omission | {{no_tag_omission}} | | ||
| Permitted parents | Any element that accepts [phrasing content](/es/docs/Web/HTML/Content_categories#Phrasing_content). | | ||
| Permitted ARIA roles | Any | | ||
| DOM interface | {{domxref("HTMLElement")}} Up to Gecko 1.9.2 (Firefox 4) inclusive, Firefox implements the {{domxref("HTMLSpanElement")}} interface for this element. | | ||
|
||
### Atributos | ||
|
||
Este elemento solo incluye los [atributos globales](/es/docs/Web/HTML/Atributos_Globales). | ||
|
||
### Ejemplos | ||
|
||
<p> | ||
<em>El dinero</em> es importante pero <strong>la salud</strong> lo es más. | ||
</p> | ||
|
||
### Comentarios | ||
|
||
[em](es/HTML/Elemento/em) tiene un hermano mayor: [strong](es/HTML/Elemento/strong). [em](es/HTML/Elemento/em) sirve para dar énfasis y [strong](es/HTML/Elemento/strong) para dar mucho énfasis |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
title: embed | ||
slug: Web/HTML/Element/embed | ||
tags: | ||
- HTML | ||
- HTML5 | ||
- HTML:Elemento | ||
- para_revisar | ||
translation_of: Web/HTML/Element/embed | ||
original_slug: Web/HTML/Elemento/embed | ||
--- | ||
> **Nota:** este tema documenta sólo el elemento \<embed> que se define como parte de HTML5. No trata las implementaciones anteriores no estandarizadas del elemento `<embed>`. | ||
El _Elemento HTML Embed_ ( `<embed>` ) representa un punto de integración para una aplicación externa o de contenido interactivo (en otras palabras, un plug-in). | ||
|
||
## Contexto de uso | ||
|
||
| Contenido permitido | Ninguno; es un elemento vacío. | | ||
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ||
| Omisión de etiquetas | Debe tener una etiqueta de inicio, pero no debe tener una etiqueta de cierre. | | ||
| Elementos primarios permitidos | Cualquier elemento que acepte [contenido estático](/en/HTML/Content_categories#phrasing_content "../../../../en/HTML/Content categories#phrasing content") . | | ||
| Documento normativo | [HTML 5, sección 4.8.3](http://www.w3.org/TR/html5/the-iframe-element.html#the-embed-element) | | ||
|
||
## Atributos | ||
|
||
Este elemento admite los siguientes atributos además de los [atributos globales](/en/HTML/Global_attributes "en/HTML/Global attributes") . | ||
|
||
- {{ htmlattrdef("height") }} | ||
- : La altura del recurso mostrada en píxeles CSS. | ||
- {{ htmlattrdef("src") }} | ||
- : La dirección URL del recurso que se está incrustado. | ||
- {{ htmlattrdef("type") }} | ||
- : El tipo MIME que se va a usar para la selección del plug-in para crear una instancia. | ||
- {{ htmlattrdef("width") }} | ||
- : El ancho del recurso mostrado en píxeles CSS. | ||
|
||
## Interfaz DOM | ||
|
||
- [HTMLEmbedElement](/en/DOM/HTMLEmbedElement "en/DOM/HTMLEmbedElement") | ||
|
||
## Consulta también | ||
|
||
Otros elementos que se utilizan para incrustar el contenido de varios tipos incluyen {{ HTMLElement("audio") }}, {{ HTMLElement("canvas") }}, {{ HTMLElement("iframe") }}, {{ HTMLElement("img") }}, {{ HTMLElement("math") }}, {{ HTMLElement("object") }}, {{ HTMLElement("svg") }} y {{ HTMLElement("video") }}. | ||
|
||
{{ languages ( { "en": "en/HTML/Element/embed" } ) }} |
Oops, something went wrong.