Skip to content

Website Structure

  1. Agrega la estructura HTML básica para cualquier sitio web (doctype, html, head y body).

  2. Agrega “Hello World” dentro de la etiqueta del título (title) del sitio web.

Preview

  • La estructura debería de verse algo así:
<!DOCTYPE html>
<html>
<head>
<title> <!-- El título va aquí --> </title>
</head>
<body>
</body>
</html>
  • El título del sitio web aparece en la pestaña del sitio web (arriba en el navegador).