Estructura Básica en HTML

    <!DOCTYPE html>
    <html>
       <head>
         <meta charset="UTF-8">
         <title>Titulo del documento</title>
       </head>
       <body>
          Contenido del documento......
       </body>
   </html>