Posts

Showing posts with the label structureofhtml

STRUCTURE OF HTML.

Image
Html is a tag based language . html consists of many tags some of the tags are as follows <html> the main html tag </html> closing the tag. <title> adds the title to your page </title> . <head> head of the page </head> . <body> in this tag we have to write the body of the web page and at last close the body tag </body>. There are 6 heading tags in html which are very much important to glorify the texting style of the web page .. those are .. <h1> and closing of <h1> . <h2> and closing of <h2> . <h3> and closing of <h3> . <h4> and closing of <h4> . <h5> and closing of <h5> . <h6 > and closing of < h6> .                         EXAMPLE CODE                         OUTPUT. If we have to add any paragraph to the existing html code we can use parag...