-->

HTML basic concept

<!DOCTYPE html><!--used in html 5-->
<html>          <!--called root tag-->
    <head>      <!--contains meta information of page-->
        <title><!--contains title of page-->
        first page in html
        </title
    </head>
    <body><!--is a container and contains everything-->
    my page in html
    I am learning html.<!--is content to be displayed-->
    </body>
</html>

No comments:

Post a Comment