html, head, body elements
Hello, today we're going to learn about HTML tags. The <html>, <head>, and <body> tags are used to establish the document's overall structure. First and foremost, <!DOCTYPE html> : It is the abbreviation of Document Type declaration. This tag provides information about the type and version of HTML. If you skip or miss adding this tag, it will be added dynamically by the browser. You can write it as <!doctype html> since it is not case sensitive. <html> : All html tags are enclosed inside the opening <html> and closing </html> tag. This tag indicates that every tag inside the opening <html> and closing </html> tag is a html element. <body> : The content we want to display is written inside the body tag. Everything between opening<body> and closing</body> tag will be shown on the main window browser. <head> : The position of the head element is between the opening html and opening body ta...