<ol>
ol represents the container for an ordered list. An order list has a default User Agent (UA) setting: line items are numbered. However, CSS provides variant alphabetical or numerical marker types.
- Start tag:
<ol>- End tag:
</ol>
- Example [Basic]:
-
Two aspects of Web Standards for those what wants to neglect them.
- Validation: Web browsers' error-handling and recovery make validation unnecessary.
- Semantics: Semantic Web Efforts are encouraging but proper grammatical use of HTML elements like italic versus emphasis are unnecessary.
- Code [HTML]:
-
<p>Two aspects of Web Standards for those what wants to neglect them.</p> <ol> <li><strong>Validation:</strong> Web browsers' error-handling and recovery make validation unnecessary.</li> <li><strong>Semantics:</strong> <a href="http://www.w3.org/2001/sw/" title="View 'W3C Semantic Web Activity' site">Semantic Web Efforts</a> are encouraging but <span class="oblique"> proper</span> grammatical use of <abbr>HTML</abbr> elements like italic versus emphasis are unnecessary.<li> </ol>
- Example [Basic (Sub-sections)]:
-
- What makes a website search-engine friendly?
- Use WCAG Samurai when Web Content Accessibility Guidelines (WCAG) are involved
- Use Resource Description Framework - in - attributes (RDFa) Attributes
- Use CSS with Markup Languages sans tables
- Are search engines Assistive Technologies (AT) devices? —Yes.
- Are search engines like screen readers? —Yes.
- What makes a website search-engine friendly?
- Code [HTML]:
-
<ol> <li>What makes a website search-engine friendly? <ol style="list-style-type:lower-roman;"> <li>Use WCAG Samurai when Web Content Accessibility Guidelines (WCAG) are involved</li> <li>Use Resource Description Framework - in - attributes (RDFa) Attributes</li> <li>Use CSS with Markup Languages sans tables</li> </ol> </li> <li>Are search engines Assistive Technologies (AT) devices? —<strong>Yes.</strong></li> <li>Are search engines like screen readers? —<strong>Yes.</strong></li> </ol>
</ol>
