Warning:
This wiki has been archived and is now read-only.

Guide/e/body

From HTML WG Wiki
Jump to: navigation, search

The body element

Element Summary

The body element defines the section that contains the content (information and structure) of the HTML document. There can be only one body element in a document.

Best Practices

Explain any best practices here. Use examples to illustrate where appropriate.

Internationalisation Techniques

Describe any techniques authors should use to help with internationalisation.

Accessibility Techniques

Describe any special techniques that authors should use to ensure accessibility.

Examples

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>body Element Example</title>
  </head>
  <body>
    <p>This is within the main section of content of an HTML document. Any number of the other 14 types of sections can be included here.</p>
  </body>
</html>

See Also

Link to any other relevant articles, guidelines (e.g. WCAG techniques), tutorials, etc. The quality of these references should be very good and not teach any bad practices.