From http://www.w3schools.com (Copyright Refsnes Data)

JavaScript small() Method


String Object Reference JavaScript String Object

Definition and Usage

The small() method is used to display a string in a small font.

Syntax

stringObject.small()


Example

Example

Display text in a small font:

<script type="text/javascript">

var str="Hello world!";
document.write(str.small());

</script>

Try it yourself »


String Object Reference JavaScript String Object

From http://www.w3schools.com (Copyright Refsnes Data)