- Web design
- HTML5
- here
[HTML5] body tag-where to write HTML content inside
HTML content is written inside the body tag . HTML content is what is actually displayed on the screen.
<body> HTML content </body>
HTML template
DOCTYPE declaration and html tags, head tag and body tag are HTML templates.
<! DOCTYPE html>
<html>
<head>
HTML header
</head>
<body>
HTML content
</body>
</html>
HTML・CSS Writing 2022