What is the significance of <head> and <body> tag in HTML?
Answer / nashiinformaticssolutions
<head> tag provides the information about the document. It should always be enclosed in the <html> tag. This tag contains the metadata about the webpage and the tags which are enclosed by head tag like <link>, <meta>, <style>, <script>, etc. are not displayed on the web page. Also, there can be only 1 <head> tag in the entire Html document and will always be before the <body> tag.
<body> tag defines the body of the HTML document. It should always be enclosed in the <html> tag. All the contents which needs to be displayed on the web page like images, text, audio, video, contents, using elements like <p>, <img>, <audio>, <heading>, <video>, <div>, etc. will always be enclosed by the <body> tag. Also, there can be only 1 body element in an HTML document and will always be after the <head> tag.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain <article> tag in html5?
What is the use of XHTML Modularization?
What is layer in html?
Does safari support datalist?
Does a hyperlink only apply to text?
Are html tables obsolete?
What is tr and td in html?
What is the purpose of html?
What is html partial?
Is div a semantic tag?
What is a Canvas? What is the default border size of a canvas?
Why should I care if my document is in correct HTML? It displays all right on my browser.