Html Studio - HTML, CSS, Script reference.
HTML Elements


H 4 - Level Four Heading


The H4 element defines a level-four heading. This heading is more important than an H5 but less important than an H3.

The deprecated ALIGN attribute suggests the horizontal alignment for the heading on visual browsers. Possible values are left, right, center, and justify. Style sheets provide greater flexibility in suggesting alignment.

Visual browsers typically render H4 in a bold font. Authors can suggest a presentation for H4 through style sheets. The following CSS ruleset suggests a presentation for all H4 elements:

h4 {
  margin-left: 6%;
  margin-right: 6%;
  font-weight: bold
}

Authors should not choose a heading level based on the font size commonly used by visual browsers. The heading level should be chosen based on the heading's importance and placement in the document. An H4 is typically used within a section headed by an H3.


Maintained by Nick Grant < htmlstudio@talk21.com >


Copyright © 2000 Nick Grant. All Rights Reserved.