Search code examples
htmlcsshtml5-audio

Basic HTML format


I need to know the basic structure of HTML as I started coding today and Have no reference.

I just know my friend told me to start your programming journey from stackoverflow.

I have only studied html in 6th class for once and now i don't remember it.


Solution

  • This is the basic HTML format and You can check the reference from the below link

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>
            tittle
        </title>
    </head>
    <body>
        body
    </body>
    </html>

    https://www.w3schools.com/html/html_basic.asp