Estructura HTML5



Un documento html5 se divide en dos partes:

  • Head: Contiene la información sobre el documento HTML. Por ejemplo, título de la página, versión de HTML, metadatos, enlaces, etc.
  • Body: Incluye todo el contenido que se muestra en la página web.

La estructura básica de html luce así y es el código que toda página web debe tener:

<!DOCTYPEhtml>
<htmllang="en">
<head>
    <metacharset="UTF-8">
    <metahttp-equiv="X-UA-Compatible"content="IE=edge">
    <metaname="viewport"content="width=, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>