This method causes a string to be displayed in the specified size as if it were in a <font size="size"> tag.
Its syntax is as follows −
string.fontsize( size )
size − An integer between 1 and 7, a string representing a signed integer between 1 and 7.
Returns the string with <font size="size"> tag.
Try the following example.
<html> <head> <title>JavaScript String fontsize() Method</title> </head> <body> <script type="text/javascript"> var str = new String("Hello world"); alert(str.fontsize( 3 )); </script> </body> </html>
<font size="3">Hello world</font>