HTML is a markup language which is used by the browser to manipulate text, images and other content to display it in required format. HTML was created by Tim Berners-Lee in 1991. The first ever version of HTML was HTML 1.0 but the first standard version was HTML 2.0 which was published in 1999.
(got from geeks for geeks website)
From the above text you could get a picture of 'What is html?'. Thank you for geeks for geeks website for a wonderful explanation.
In web world HTML is playing a main role.
So lets start how to write HTML..
To start html we should declare that it is a html5 document
<!doctype html>
It is the starting tag. and it will followed by <html>.
here we should understand tags.
html - it is the tag that saying that it is an html tag and also it is the parent tag for all.
head - it is the second tag and performs like the head of the whole document. it holds all the details of the following web page.
body -This is the tag that contains the whole elements of the web page.

No comments:
Post a Comment