HTML5

Anatomía basica:

!html
<!DOCTYPE html>
<html lang="es">
<head>
	<title>Título</title>
</head>
<body>
	<h1>Documento de ejemplo</h1>
	<div>
			<h1>Contenido dentro del div</h1>
			<h2>sub título</h2>
			<p>parrafo 1</p>
			<p>parrafo 2</p>
	</div>
</body>
</html>