Posts
Showing posts from August, 2021
Learn HTML Post 3 : What is the basic structure of an HTML document ?
- Get link
- X
- Other Apps
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 ?
- Get link
- X
- Other Apps