Intro_basicos_HTML_CSS/CursoHTML/19_cabecera.html

25 lines
982 B
HTML
Raw Permalink Normal View History

2020-11-18 01:21:49 -03:00
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="refresh" content="5;url=http://www.google.com">
<meta name="author" content="FuzanToko">
<meta name="description" content="Curso de HTML y CSS, el legnuaje de desarrollo de páginas web">
<meta name="keywords" content="HTML, CSS, curso HTML, Curso CSS">
<meta name="robots" content="index, follow">
<!--
index, follow -> Permite indexar y rastrear los contenidos del sitio
noIndenx follow -> Evita indexar pero permite el rastreo
index, nofollow -> Permite indexar pero no el rastreo
noindex, no follow -> Evita indexar y el rastreo
-->
<title>Elementos de la cabecera</title>
</head>
<body>
Hola desde el body! <br>
en 5 segundos esta pagina se redirigirá a google.cl <br>
Pulsa la tecla ESC para cancelar.
</body>
<hr>
<a href="18_Script2.html"><--Anterior</a>
<a href="20_doctype.html">Siguiente--></a>
</html>