Diferencia entre revisiones de «Usuario:Lmorillas/modulo lenguajes de marcas/html/lista rapida html»

De WikiEducator
Saltar a: navegación, buscar
(Página creada con '{{MiTitulo | Vistazo rápido a HTML 4.01}} == Un documento básico == <source lang="html4strict"> <html> <head> <title>Document name goes here</title> </head> <body> …')
 
Línea 12: Línea 12:
 
   </body>
 
   </body>
 
</html>
 
</html>
 +
</source>
 +
 +
== Codificación caracteres ==
 +
<source lang="html4strict">
 +
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
</source>
 
</source>
  

Revisión de 00:00 15 nov 2012


Un documento básico

<html>
  <head>
   <title>Document name goes here</title>
  </head>
  <body>
  Texto visible
  </body>
</html>

Codificación caracteres

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

Encabezados

<h1>Encabezado principal</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>Encabezado menor</h6>

Elementos de texto

<p>Esto es un párrafo</p>
<br /> (salto de línea)
<hr /> (línea horizontal)
<pre>Texto preformateado</pre>

Estilos lógicos

<em>Texto enfatizado</em>
<strong>Texto fuerte(resaltado)</strong>
<code>Código de un ordenador</code>

Estilos físicos

<b>Negrita</b>
<i>Cursiva</i>

Enlaces, anclas, imágenes

<a href="http://www.example.com/">Esto es un enlace</a>
 
<a href="http://www.example.com/"><img src="URL"
alt="Alternate Text"></a>
 
<a href="mailto:webmaster@example.com">Send e-mail</a>
 
Ancla con nombre:
<a name="nombres">Listado de nombres de alumnos</a>
<a href="#nombres">Enlace con listado de nombres de alumnos</a>

Lista no ordenada

<ul>
<li>Primer elemento</li>
<li>Segundo</li>
</ul>

Lista ordenada (numerada)

<ol>
<li>First item</li>
<li>Next item</li>
</ol>

Listas de definición

<dl>
<dt>Término 1</dt>
<dd>Definición</dd>
<dt>Término 2</dt>
<dd>Definición</dd>
</dl>

Tablas

<table border="1">
<tr>
<th>encabezado1</th>
<th>encabezado2</th>
</tr>
<tr>
<td>texto</td>
<td>texto</td>
</tr>
</table>