Web accessibility service pageWeb accessibility service page

11.3:H211202 Avoid using past HTML language.

Improper design

Use of past DIR label to reach to the content list effect, HTML4.0 has removed this label. For more of the removed labels, refer toW3C Web site.

Improper design:

  <P>cell phone brand popularity</P>
  <DIR>
  <LI>SamSung</LI>
  <LI>Sharp</LI>
  <LI>Nokia</LI>
  <LI>BenQ</LI>
  </DIR>
          

Proper demonstration

Use the UL labels still in the HTML4.0 to reach to the content list effect.

Proper example:

  <P>cell phone brand popularity</P>
  <UL>
  <LI>SamSung</LI>
  <LI>Sharp</LI>
  <LI>Nokia</LI>
  <LI>BenQ</LI>
  </UL>
          
End of Main Content