Web accessibility service pageWeb accessibility service page

3.7:H203106 Prevent using Header to bold text.

Improper design

The example below has bold fonts, and H4 label was used to represent the bold font, thus caused confusion in the structure of the paragraph.

Improper design:

<H1>1. Web site customization and design</H1>
<H2>1. Web accessibility development regulation and design</H2>
Web site designer can refer to the four regulations in the Web accessibility development design:
<H4>regulation 1:multi-media related information usability; 
regulation 2:Web site structure and exposure management usability;
regulation 3:Web site and submission related technical management usability; 
regulation 4:Web site browser usability
</H4>
<H3>¡]1¡^Web accessibility design checkpoints</H3>

          

Proper demonstration

This example used proper labeling of<H1><H2><H3>and the use of STRONG label to present bold font effect.

Proper example:

<H1>1. Web site customization and design</H1>
<H2>1. Web accessibility development regulation and design</H2>
Web site designer can refer to the four regulations in the Web accessibility development design:
<STRONG>regulation 1:multi-media related information usability; 
regulation 2:Web site structure and exposure management usability;
regulation 3:Web site and submission related technical management usability; 
regulation 4:Web site browser usability
</STRONG>
<H3>Web accessibility design checkpoints</H3>
          
End of Main Content