HTML (Chapter 2) Contd.. Learning New each day! Moving ahead every day! Over the years, several versions of HTML have been released but undoubtedly, the basics of HTML remain the same. The basic structure and the sequence of tags remain the same. Any HTML document starts and ends with opening <HTML> and closing </HTML> tags. You may write thousands or millions of sentences or attributes in your HTML document, But this remains the same- <HTML>……</HTML> And the whole document comes in between. Now, just after the opening <HTML> tag comes the opening and closing <head> tags which contain all the non-visual elements of the Html document. It looks like this- <HTML> <head>…..</head> </HTML> And now, the head tag is followed by the opening and closing <body> tags. The body tags contain all the visual-structural elements of the html document such as the paragraphs, headings, quotes, lists, images, links , and many more. ...
HTML (Chapter 2) Contd.. Learning New each day! Moving ahead every day! Over the years, several versions of HTML have been released but undoubtedly, the basics of HTML remain the same. The basic structure and the sequence of tags remain the same. Any HTML document starts and ends with opening <HTML> and closing </HTML> tags. You may write thousands or millions of sentences or attributes in your HTML document, But this remains the same- <HTML>……</HTML> And the whole document comes in between. Now, just after the opening <HTML> tag comes the opening and closing <head> tags which contain all the non-visual elements of the Html document. It looks like this- <HTML> <head>…..</head> </HTML> And now, the head tag is followed by the opening and closing <body> tags. The body tags contain all the visual-structural elements of the html document such as the paragraphs, headings, quotes, lists, images, links , and many more. ...