Skip to content

Instantly share code, notes, and snippets.

@veeven
Created November 2, 2016 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veeven/95e85500e35e4d52f5efdb2ebbfa110d to your computer and use it in GitHub Desktop.
Save veeven/95e85500e35e4d52f5efdb2ebbfa110d to your computer and use it in GitHub Desktop.
Ordered lists with Telugu alphabet
license: CC0-1.0
<!doctype html>
<style>
@counter-style telugu-alphabetic {
system: alphabetic;
symbols: 'అ' 'ఆ' 'ఇ' 'ఈ' 'ఉ' 'ఊ' 'ఎ' 'ఏ' 'ఐ' 'ఒ' 'ఓ' 'ఔ' 'అం' 'అః' 'క' 'ఖ' 'గ' 'ఘ' 'ఙ' 'చ' 'ఛ' 'జ' 'ఝ' 'ఞ' 'ట' 'ఠ' 'డ' 'ఢ' 'ణ' 'త' 'థ' 'ద' 'ధ' 'న' 'ప' 'ఫ' 'బ' 'భ' 'మ' 'య' 'ర' 'ల' 'వ' 'శ' 'ష' 'స' 'హ' 'ళ' 'క్ష' 'ఱ';
}
ol {
list-style-type: telugu-alphabetic;
}
</style>
<ol>
<li>ఒకటి</li>
<li>రెండు</li>
<li>మూడు</li>
<li>నాలుగు</li>
<li>ఐదు</li>
</ol>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment