Skip to content

Instantly share code, notes, and snippets.

@veeven
Last active November 4, 2016 15:23
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/966b263fe80a360071b28b67107bd877 to your computer and use it in GitHub Desktop.
Save veeven/966b263fe80a360071b28b67107bd877 to your computer and use it in GitHub Desktop.
Letter Spacing & Telugu
<!doctype html>
<meta charset="utf-8">
<style type="text/css">
@keyframes fun {
from {
letter-spacing: 2rem;
}
to {
letter-spacing: 0;
}
}
h1 {
letter-spacing: 2rem;
font-family: 'Mandali', serif;
animation-name: fun;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
</style>
<h1>ఆరోగ్యమే మహాభాగ్యం</h1>
<h1>మొజిల్లా ఫైర్‌ఫాక్స్</h1>
<h1>స్ట్రాంగ్ స్ట్రైకర్</h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment