Saltar al contenido

Introducción a HTML

05/10/2019

En este artículo veremos una pequeña introducción a html, de forma que podamos diseñar una página web sencilla.

Documento básico en html

<html>
<head>
  <title> Titulo de la Página</title>
</head>

<body>

</body>
</html>

Texto

<em>cursiva</em>
<strong>negrita</strong>
<small>tamaño de texto pequeño</small>

Listas

<ul>

    <li>Inicio</li>

    <li>Noticias</li>

    <li>Artículos</li>

    <li>Contacto</li>

</ul>

Enlaces

<a href="http://www.pertiga.es" title="ENTRAR">Texto del enlace</a>

Imágenes

<img src="https://www.pertiga.es/imagen.jpg" alt="" />

Tablas

<table>
<tr> 
<th>Curso</strong></td>
<th><strong>Horas</strong></td>
</tr> 
<tr>
<td>HTML</td>
<td>20</td>
</tr>
</table>