Intro_basicos_HTML_CSS/CursoHTML/16_caracteres.html
2020-11-18 01:21:49 -03:00

14 lines
395 B
HTML
Executable File

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Caracteres Especiales</title>
</head>
<body>
&lt; &nbsp; &nbsp; &nbsp; &gt; &amp; &cent; &pound; &yen; &euro; &copy; &reg; &trade; &times; &divide;
<!-- &nbsp; Espacio en blanco -->
</body>
<hr>
<a href="15_iframe.html">&lt;--Anterior</a>
<a href="17_formularios.html">Siguiente--&gt;</a>
</html>