Posts

Showing posts from August, 2021

Learn

Learn HTML Post 3 : What is the basic structure of an HTML document ?

 A basic HTML document looks like this... <html> <head> </head> <body> </body> </html> Here, <html> and </html>  are the basic tags for an html document. <head> and </head> include the title and the metadata of the document. <body> and </body> tags define the body of an html document. Inside these tags, we will make headings, paragraphs, links, images etc.

Learn HTML Post 2 : What are the different versions of HTML ?

 HTML has 5 versions. They are... 1.) HTML 2.) HTML 2 3.) HTML 3 4.) HTML 4 5.) HTML5 HTML5 is the latest and currently used version of HTML.

Learn HTML Post 1 : What is HTML ?

 HTML stands for Hyper Text Markup language. It was created by Tim Berners-Lee. It was created in 1989. It is a markup language which uses tags to identify content. It is used to create websites. It is a part of web development.