Intro_basicos_HTML_CSS/CursoHTML/01_estructura.html

12 lines
215 B
HTML
Raw Permalink Normal View History

2020-11-18 01:21:49 -03:00
<html>
<head>
<meta charset="utf-8">
<title>Título del Documento</title>
</head>
<body>
Hola Mundo!
<hr>
<!-- Link Local -->
<a href="02_comentarios.html">Siguiente--></a>
</body>
</html>