Code icon

HTML - Doctype

Links


    //BASIC
    <!DOCTYPE html> //Declaration of HTML document
    <html lang="en"> //root element
    <head> //Meta information of the page
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
        <meta name="viewport" content="width=device-width, initial-scale=1.0"> //responsive, sets the viewport
        <meta name="viewport" content="width=device-width, user-scalable=no"> //disables zoom to make it view as native app, not to use
        <title>Doctype</title>
        <link rel="stylesheet" href="styles.css">  //css file
    </head>

    <body>
        <script src="js/main.js"></script> //javascript file
    </body>
    </html>


    //ALTERNATE & EXTRA
    <meta name="description" content="Disfruta de los vídeos y la música que te gustan, sube material original y comparte el contenido con tus amigos, tu familia y el resto del mundo en YouTube.">
    <meta name="keywords" content="vídeo, compartir, teléfono con cámara, teléfono con vídeo, gratis, subida">