BIENVENIDOS A MI PAGINA HTML

ESCUELA JOAQUIN HERVAS

MOCHA-2013

GLADYS RUIZ

DOCENTE
...Buena suerte....

EJEMPLO DE CODIGO HTML

Para crear un vinculo o enlace mediante código Html se toma como referencia el siguiente código:

<html>
<head>
<title>a href=...</title>
</head>

<body>

<a href="http://www.google.com/">Google.</a>

</body>
</html>   


Para crear una linea horizontal  divisoria:

<html>
<head>
<title><hr></title>
</head>
   
<body>

<p>Las línea horizontales divisoria son muy útiles para separar secciones.</p>

Sección 1
<hr>
Sección 2
<hr>
Sección 3

</body>
</html>           



Para definir un enlace vinculo simple:
<html>
<head>
<title>a href=...</title>
</head>

<body>

<a href="http://www.google.com/">Google.</a>

</body>
</html>    


 Para colocar una imagen en el texto

<html>
<head>
<title><img src=...alt=...></title>
</head>

<body>
<img src="http://www.virtualnauta.com/graficos/foto1.jpg" alt="Dos niñas caminando de la mano">
</body>
</html>   



Para ser una lista ordenada:

<html>
<head>
<title>Listas ordenadas</title>
</head>

<body>
<p>Listado de colores básicos:</p>

<ol>
 <li>Azul</li>
 <li>Rojo</li>
 <li>Amarillo</li>
</ol>

</body>
</html>   










No hay comentarios:

Publicar un comentario