Intro_basicos_HTML_CSS/CursoHTML/02_comentarios.html

20 lines
402 B
HTML
Raw Permalink Normal View History

2020-11-18 01:21:49 -03:00
<html>
<head>
<meta charset="UTF-8">
<title>Comentarios</title>
</head>
<body>
Este es un contenido en el body
<!-- Comentario de una linea -->
<!--
Este es un comentario
de varias
lineas
-->
Ingreso mas contenido
<hr>
<!-- Link Local -->
<a href="01_estructura.html"><--Anterior</a>
<a href="03_encabezados.html">Siguiente--></a>
</body>
</html>