November 2011
Intermediate to advanced
384 pages
13h 23m
English
Sectioning tags are the pinnacle of the semantic layout, which was introduced in HTML5. They do not tend to support any local attributes but do fully support global attributes. As such, they can and should be manipulated via CSS. The semantic layout is demonstrated in Chapter 2, “Getting Started with HTML5 Page Layout.”
All HTML sectioning tags support the standard global attributes, described earlier in this appendix in the section “HTML Global Attributes.”
The <body> tag group represents the main content of the web page. It is used exactly once, directly after the <head> block:
<!doctype html>
<html>
<head>
...
</head>
<body>
...
</body>
</html>
Note the closing </body></html> tags should be the ...
Read now
Unlock full access