Posts

Showing posts with the label what is HTMl

What is HTML? | HTML 2020

 What is HTML? HTML is stand for H yper T ext M arkup   L anguage. HTML is a Markup language which is used for Web Development. HTML tell the browser how to display a page. HTML use tags start and end tags HTML is not a programming language. How is the Structure of HTML < html > < head >           < title > What is HTML </ title > </ head > < body >      </ body > </ html > <html> is the start tag of HTML and it is end with </html> at the bottom of page. . Every HTML tag is start with <Name of tag> and end with </Name of Tag> The second tag is <head> which is use for providing information about the page such as title etc. <title> tag is use to display the title of the page. it end with </title> The fourth is <body> tag. Whatever we watch on the web page, placed inside the <body> tag. <body> tag is...