Skip to content

Hello without Head

En el último ejercicio tuviste que agregar toda la estructura básica HTML de un sitio web.

Haz lo mismo en este ejercicio, pero no incluyas la etiqueta <head>.

  1. Agrega al <body> un título <h1> con tu nombre.

Preview

  • La estructura debería de verse algo así:
<!DOCTYPE html>
<html>
<body>
<h1><!--Aquí irá tu nombre--></h1>
</body>
</html>