What's the difference between HTML <head> and <body> tags?

后端 未结 8 939
庸人自扰
庸人自扰 2021-01-31 09:19

What\'s the difference between HEAD tags and BODY tags?

most HTML books only \'briefly\' mentions and tags...but they

8条回答
  •  暖寄归人
    2021-01-31 09:57

    • Things in the head tag are things that shouldn't be rendered: information about the page and how to process it.
    • Things in the body tag are the things that should be displayed: the actual content.
    • Javascript in the body is executed as it is read and as the page is rendered.
    • Javascript in the head is interpreted before anything is rendered.

提交回复
热议问题