![]() ![]() |
11.3:H211202 Avoid using past HTML language.Improper designUse 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> End of exmple Proper demonstrationUse 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 exmple |
![]() |