Resources Menu


Sponsor

Quick Reference Sheets for Webmasters

Quick Reference sheets are packed full of useful information for webmasters of all levels.

HTML Reference Sheet

HTML Tag List


<div>
This tag is a block-level element that defines a section or division of your document. As a block-level element, it contains one line break and can accept ANY other html element within it. It has become a standard way of setting sections of your website that will be enitrely laid out with CSS.

Attributes
none. all attributes have been deprecated
example:
<div>
This is a block-level section with one line break
</div>

[ Back to the Tag List ]