3

I'd like to make an custom OL, these should display letters and no vowels. This means that the first list item would be C for example, then goes D, then skips E and goes to F.

EDIT: someone flagged this as a duplicate. I have searched for the increment, no vowels and starting at C but did not find anything specified as such.

I've tried this

<ol type="A">
<li>Here is C </li>
<li>Here is D</li>
<li>Here is F</li>
<li>Here is G</li>
</ol>
Maartenw
  • 595
  • 1
  • 5
  • 19
  • Possible duplicate of [Add custom text to ordered list
  • ](http://stackoverflow.com/questions/26025057/add-custom-text-to-ordered-list-li)
  • – SWiggels Oct 05 '15 at 08:41
  • 1
    What happened to B ? Last time I checked, it still wasn't a vowel. – xlecoustillier Oct 05 '15 at 08:42
  • 2
    If you want to start your OL at item 3, than add `start="3"` to your `
      ` tag, like this `
        `. See [link](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol)
      – Yvo Cilon Oct 05 '15 at 08:44
    1. 1
      I disagree on this question being a dupe of [Add custom text to ordered list
    2. ](http://stackoverflow.com/questions/26025057/add-custom-text-to-ordered-list-li). Unless I miss somthing, the provided solution there won't allow the custom increment OP's asking for.
    3. – xlecoustillier Oct 05 '15 at 08:46
    4. I've searched before asking the question @SWiggels and have not found the exact question / problem. OL's , sure. But not no vowels / skip. – Maartenw Oct 05 '15 at 16:00