Skip to main content

Posts

HTML (Chapter 2) Contd..

  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. ...
Recent posts

Html, What is it and How Does it Work? Super Easy Programming Tricks!

  Html, What is it and How Does it Work? Html stands for hypertext markup language and it is used world wide over web in each and everything you see on the internet. So in this article, we will be talking about the basics of HTML. Well, as said above, it is a language but it is neither a speaking language nor a simple programming one rather it is a high level language which computers use and is quite easy even for us to use it in our daily lives if we are more passionate about internet or computers or anything related to them. Html is a markup language that uses tags to define each part of a particular web page like that of the introduction, title or heading, body, end, etc. There are a hell lot of tags in HTML which we will come across in further lessons. But the very basic tags of HTML are as follows: ·         Opening and closing Html tags ·         Opening and closing head tags ·   ...