Skip to content

Commit

Permalink
Convert /web/html/element/[e-z]* folder to Markdown (es) (#8208)
Browse files Browse the repository at this point in the history
* 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
Graywolf9 authored Sep 15, 2022
1 parent fdc7be3 commit 99a73b7
Show file tree
Hide file tree
Showing 48 changed files with 1,779 additions and 2,577 deletions.
61 changes: 0 additions & 61 deletions files/es/web/html/element/em/index.html

This file was deleted.

37 changes: 37 additions & 0 deletions files/es/web/html/element/em/index.md
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
70 changes: 0 additions & 70 deletions files/es/web/html/element/embed/index.html

This file was deleted.

45 changes: 45 additions & 0 deletions files/es/web/html/element/embed/index.md
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" } ) }}
Loading

0 comments on commit 99a73b7

Please sign in to comment.