<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Mi primera página web</title>
</head>
<body>
<!-- h = heading = Encabezado o título -->
<h1>Mi primer encabezado o título</h1>
<h2>Mi segundo encabezado o título</h2>
<h3>Mi tercer encabezado o título</h3>
<h4>Mi tercer encabezado o título</h4>
<h5>Mi tercer encabezado o título</h5>
<h6>Mi tercer encabezado o título</h6>
<p>El desarrollo web o programación web utiliza tres principales tecnologías; <strong>HTML, CSS y Javascript</strong>. Juntas permiten crear aplicaciones sofisticadas, facebook es el ejemplo más conocido, también mercadolibre, instagram y twitter.</p>
<!-- lt = less than y gt = greater than -->
<h1>Lista desordenada <ul> </h1>
<!-- ul = unorder list o Lista desordenada-->
<ul>
<!-- li = list item o Elemento de Lista-->
<li>Jaime</li>
<li>Cervantes</li>
<li>Velasco</li>
</ul>
<h1>Lista ordenada</h1>
<!-- ol = order list o Lista ordenada -->
<ol>
<li>Jaime</li>
<li>Cervantes</li>
<li>Velasco</li>
</ol>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.