BASICS OF HTML FOR BEGINNERS




Hypertext Markup Language or commonly abbreviated as HTML is the Standard Markup Language for developing or structuring web pages.

HTML have different tags for different purposes like <h1> tag is used for creating heading, <p> tag is used for creating paragraph, <div> tag used for creating different divisions within the webpage and so on. To use them you have to write them like “<tag_name>” also you have to close them using “/” like “</tag_name>”.

HTML tags structure 

                       



<html>

    <head>

        <title>Title of page </title>

    </head>

    <body>

        <h1> Hello World :) </h1>

    </body>

</html>

this is basic building block of HTML

We will look into each tag in the next post stay tuned 😄

Comments

Popular posts from this blog

CREATING FIRST HTML WEBPAGE

html, head, body elements