w3schools    w3Schools
Search :
   
HOME HTML CSS XML JAVASCRIPT ASP PHP SQL MORE...   References Examples Forum About
ADVERTISEMENTS

XML Certification
Download XML editor
Custom Programming
 
Table of contents
HTML 5 Reference
HTML 5 by Alphabet
HTML 5 Attributes
HTML 5 Events

HTML5 Tags
<!-->
<!DOCTYPE>
<a>
<abbr>
<acronym>
<address>
<applet>
<area>
<article>
<aside>
<audio>
<b>
<base>
<basefont>
<bdo>
<big>
<blockquote>
<body>
<br>
<button>
<canvas>
<caption>
<center>
<cite>
<code>
<col>
<colgroup>
<command>
<datagrid>
<datalist>
<datatemplate>
<dd>
<del>
<details>
<dialog>
<dfn>
<dir>
<div>
<dl>
<dt>
<em>
<embed>
<event-source>
<fieldset>
<figure>
<font>
<footer>
<form>
<frame>
<frameset>
<head>
<header>
<h1> - <h6>
<hr>
<html>
<i>
<iframe>
<img>
<input>
<ins>
<kbd>
<label>
<legend>
<li>
<link>
<m>
<map>
<menu>
<meta>
<meter>
<nav>
<nest>
<noframes>
<noscript>
<object>
<ol>
<optgroup>
<option>
<output>
<p>
<param>
<pre>
<progress>
<q>
<rule>
<s>
<samp>
<script>
<section>
<select>
<small>
<source>
<span>
<strike>
<strong>
<style>
<sub>
<sup>
<table>
<tbody>
<td>
<textarea>
<tfoot>
<th>
<thead>
<time>
<title>
<tr>
<tt>
<u>
<ul>
<var>
<video>

Selected Reading
Web Statistics
Web Glossary
Web Hosting
Web Quality

Browse Tutorials
 

HTML 5 <body> tag


Definition and Usage

The body element defines the documents' body. It contains all the contents of the document (like text, images, colors, graphics, etc.).


Differences Between HTML 4.01 and HTML 5

In HTML 5 all <body> specific attributes are removed, while in HTML 4.01 they were deprecated


Example

<html>
<head>
</head>

<body>
The content of the document......
</body>

</html>



Attributes

  • 4: indicates if the attribute is defined in HTML 4.01
  • 5: indicates if the attribute is defined in HTML 5
Attribute Value Description 4 5
alink rgb(x,x,x)
#xxxxxx
colorname
Specifies the color of the active links in the document. Deprecated. Use styles instead. 4  
background file_name An image to use as the background. Deprecated. Use styles instead. 4  
bgcolor rgb(x,x,x)
#xxxxxx
colorname
The background color of the document. Deprecated. Use styles instead. 4  
link rgb(x,x,x)
#xxxxxx
colorname
Specifies the color of all the links in the document. Deprecated. Use styles instead. 4  
text rgb(x,x,x)
#xxxxxx
colorname
Specifies the color of the text in the document. Deprecated. Use styles instead. 4  
vlink rgb(x,x,x)
#xxxxxx
colorname
Specifies the color of the visited links in the document. Deprecated. Use styles instead. 4  

Standard Attributes

class, contenteditable, contextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, title

For a full description, go to Standard Attributes in HTML 5.

Event Attributes

onabort, onbeforeunload, onblur, onchange, onclick, oncontextmenu, ondblclick, ondrag, ondragend, ondragenter, ondragleave, ondragover, ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout, onmouseup, onmousewheel, onresize, onscroll, onselect, onsubmit, onunload

For a full description, go to Event Attributes in HTML 5.


Try-It-Yourself Demos

A very simple document
A very simple document, with only a minimum of tags. It demonstrates how the text inside a body element is displayed in the browser.