--- title: Section slug: orphaned/HTML/Elemento/section original_slug: HTML/Elemento/section ---
Atributo |
Valor |
Descripción |
|
---|---|---|---|
Genéricos |
|||
title |
Texto | Implícito | Título consultivo del elemento. |
style |
Declaraciones de estilo | Implícito | Información de estilo en línea. |
id |
Un 'nombre' | Implícito | Identificador único a nivel de documento. |
class |
Lista de clases CSS | implícito | Identificador a nivel de documento. |
dir |
Uno de los siguientes: "ltr" o "rtl" |
Implícito | Dirección del texto. |
lang |
Código de idioma | Implícito | Informació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ón | Implícito | Dirección de la imagen que se usará como fondo. |
bgcolor |
Un color | Implícito | Color del fondo. |
text |
Un color | Implícito | Color del texto. |
link |
Un color | Implícito | Indica el color inicial de los enlaces |
alink |
Un color | Implícito | Indica el color de los enlaces cuando están activos. |
vlink |
Un color | Implícito | Indica el color de los enlaces que han sido visitados. |
<!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>