html - Purpose of the <head> and <body> tags -
i want know purpose of head , body tag.
like when use <title>
tag in <body>
section ,i got same thing , when use <p>
tag in <head>
section ,that got same thing used in <body>
section,so concept define body or head section.
or understanding kind of tag use in body section , these tag used in head section.
it better if can provide me concept document this.
the html
<head>
element represents collection of metadata document, including links or definitions of scripts , style sheets.
what saying goes in <head>
tag not seen user (basically), used include relevant information , dynamic content processed browser.
the html
<body>
element represents content of html document. there 1<body>
element in document.
this means user sees on page goes in <body>
tag (basically), , there one.
do research yourself, , see else can find!
Comments
Post a Comment