Example:
Directions
Step 1: Add the following to the <head> section of your page:
<script> /* Uphill Text effect By Website Abstraction (http://wsabstract.com) Over 400+ free scripts here! */ function uphilltext(text){ var temptext=text.toUpperCase() var size=1 //go through the text, letter by letter for (i=0;i<temptext.length;i++){ document.write(temptext.charAt(i).fontsize(size).bold()) if (size<7) size++ else size=1 } } </script>
Step 2: Add the below chunk of code to your <body> whenever you wish an uphill text to be rendered (can be added multiple times):
<script> uphilltext("Welcome to our site!") </script>