Body Content
Description
The content of a html document is added througth the body
Element.
Example
The following code adds a line of text to body element.
<!DOCTYPE HTML>
<html>
<head>
<!-- metadata goes here -->
<title>Example</title>
</head>
<body>
This is the <code>content</code>.
</body>
</html><!-- ww w .j av a 2 s .c o m-->
What is being rendered in the content in body
tag.