From a55b575e8089ee6cab7c5c262a7e6db55d0e34d6 Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:46:50 +0100 Subject: unslug es: move --- .../es/orphaned/html/elemento/datalist/index.html | 7 + files/es/orphaned/html/elemento/form/index.html | 5 + files/es/orphaned/html/elemento/section/index.html | 177 +++++++++++++++++++++ 3 files changed, 189 insertions(+) create mode 100644 files/es/orphaned/html/elemento/datalist/index.html create mode 100644 files/es/orphaned/html/elemento/form/index.html create mode 100644 files/es/orphaned/html/elemento/section/index.html (limited to 'files/es/orphaned/html/elemento') diff --git a/files/es/orphaned/html/elemento/datalist/index.html b/files/es/orphaned/html/elemento/datalist/index.html new file mode 100644 index 0000000000..2f94162678 --- /dev/null +++ b/files/es/orphaned/html/elemento/datalist/index.html @@ -0,0 +1,7 @@ +--- +title: datalist +slug: HTML/Elemento/datalist +tags: + - HTML5 +--- +

Redirigir datalist

diff --git a/files/es/orphaned/html/elemento/form/index.html b/files/es/orphaned/html/elemento/form/index.html new file mode 100644 index 0000000000..dd039bead3 --- /dev/null +++ b/files/es/orphaned/html/elemento/form/index.html @@ -0,0 +1,5 @@ +--- +title: form +slug: HTML/Elemento/form +--- +

a

diff --git a/files/es/orphaned/html/elemento/section/index.html b/files/es/orphaned/html/elemento/section/index.html new file mode 100644 index 0000000000..dc632fa052 --- /dev/null +++ b/files/es/orphaned/html/elemento/section/index.html @@ -0,0 +1,177 @@ +--- +title: Section +slug: HTML/Elemento/section +--- +
+

DEFINICIÓN:

+
+ +

La etiqueta section proviene del idioma inglés y se traduce al español como sección.

+ +

 

+ +
+

ETIQUETAS: 

+
+ +

<section></section>

+ +

Genera una sección de contenido, en el cuál podemos ubicar dentro muchos otros tipos de sección (nav, article, aside,header,footer, etc).

+ +

 

+ +
+

ATRIBUTOS:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Atributo

+
+

Valor

+
+

Descripción

+
+

Genéricos

+
title TextoImplícitoTítulo consultivo del elemento.
style Declaraciones de estiloImplícitoInformación de estilo en línea.
id Un 'nombre'ImplícitoIdentificador único a nivel de documento.
class Lista de clases CSSimplícitoIdentificador a nivel de documento.
dir Uno de los siguientes: "ltr" o "rtl"ImplícitoDirección del texto.
lang Código de idiomaImplícitoInformación sobre el idioma.
Eventos: onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.
+

Específicos

+
Eventos: onload, onunload.
+

De transición

+
+

atributo

+
+

valor

+
+

descripción

+
background Una direcciónImplícitoDirección de la imagen que se usará como fondo.
bgcolor Un colorImplícitoColor del fondo.
text Un colorImplícitoColor del texto.
link Un colorImplícitoIndica el color inicial de los enlaces
alink Un colorImplícitoIndica el color de los enlaces cuando están activos.
vlink Un colorImplícitoIndica el color de los enlaces que han sido visitados.
+ +

Ejemplos

+ +

+   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+        "http://www.w3.org/TR/html4/strict.dtd">
+    <html>
+      <head>
+           <title>Documento html básico</title>
+      </head>
+
+      <body>
+
+        <section>
+          <article>
+             <p>Ejemplo de texto1</p>
+          </article>
+         <article>
+             <p>Ejemplo de texto2</p>
+          </article>
+        </section>
+
+        <section>
+         <article>
+             <p>Ejemplo de texto3 en un segundo artículo </p>
+          </article>
+       </section>
+      </body>
+    </html>
+ 
-- cgit v1.2.3-54-g00ecf