Hi Buddy this topic is document text sizer, its make resize your document text. Sometimes the text size you've specified for your webpage isn't suitable to the viewer, depending on his browser configuration or OS. This useful script by Taewook uses Dynamic CSS to let the viewer himself modify the text size of the page on demand, by clicking on an Increase or Decrease Font Size link. Now that's a kind of personalization your viewers may just appreciate!
This script is most appropriate for webpages styled using CSS or a minimal of deprecated HTML tags, though it can also affect text sized using explicit tags. Compatibility wise, a DOM enabled browser is required for the script to take affect- IE5+/NS6+/Opera 7+ etc.
Click the following for example :
+ Larger Font | + Smaller Font
How To Make it :
1. Add the following code to the <HEAD> section of your web page:
<script type="text/javascript" src="http://yourfilelink.com/textsizer.js">
</script>
A bold text : change with your textsizer.js file link in your hosting like www.geocities.com etc.
The above script references an external.js file. Download this file here
2. Now set up the two links that will increase and decrease your text size. The following will do nicely:
<a href="javascript:ts('body',1)">+ Larger Font</a> | <a
href="javascript:ts('body',-1)">+ Smaller Font</a>
|