HTML Basic Elements
HTML Basic Elements HTML Basic Elements : It includes HTML documents , paragraphs , headings , links, images , lists etc... HTML Documents <!DOCTYPE html> : All HTML documents must start with a document type declaration HTML document begins with <html> and ends with </html> tag. Main part / visible part of the HTML document is between <body> and </body> tag. Program : <!DOCTYPE html> <html> <head> <title> NibKarma HTML </title> </head> <body> </body> </html> HTML Headings Headings in html are possible <h1> , <h2> , <h3> , <h4> , <h5> and <h6>. Program : <!DOCTYPE html> <html> <head> <title> NibKarma HTML </title> </head> <body> <h1> NibKarma </h1> <h2> NibKarma </h2> <h3> NibKarma </h3> <h4> NibKarma </h4> <h5> NibKarma </h5> <h6> NibKarma </h6...