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

后端 未结 8 916
庸人自扰
庸人自扰 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 10:08

    The Head tag is typically used to import other files and define attributes of your page that are not displayed, like meta data. So you could place CSS/Javascript files that you webpage requires in your Head section and they would load before the your page displays.

    The body Tag is where you you place the Parts of your website that you want displaed, like p tags, divs, etc.

提交回复
热议问题