0
I am learning HTML and i dont understand the concept of <head\> and <body/>....can i get assistance please?
3 ответов
+ 2
<body> element contains all the contents of an HTML document, such as headings, paragraphs, images and e.t.c.
</body> is closing of body tag.
<head> tag is used to contain specific information about a web page, often referred to as metadata.
</head> also closing tag of <head> tag.
+ 3
Body tag for visual content. Head tag for defining scripts, title, styles, etc
0
I get it now...thank you