Category:Internet -> Whatis
- In Hypertext Markup Language (HTML), body is used to describe the body (main content) of an HTML document. Content within the body of the page is enclosed within the <body> and </body> tags in the HTML code.
- In Cascading Style Sheets (CSS), body is used to select the body tag in an HTML document. In the CSS code, it would be called the “body selector”. For example, to give the body a grey background color, the below CSS code could be used.
<style type=“text/css”>
body { background-color:#CCCCCC; }
</style>
- In an e mail, the body is the main portion of an e-mail that contains the message.
Categories