Loading, please wait...

A to Z Full Forms and Acronyms

Java Applet - To Change The Font Style Using Font Class

Jul 03, 2018 Font, setColor, 7847 Views
This Program is used to change The Font Style Using Font Class using Java Applet.
import java.awt.*; 
import java.applet.*; 

public class fon extends Applet 
{ 
Font f1,f2,f3; 

public void init() 
{ 
f1 = new Font("Arial",Font.BOLD,18); 
f2 = new Font("Forte",Font.PLAIN,24); 
f3 = new Font("Elephant",Font.ITALIC,28); 
} 

public void paint(Graphics g) 
{ 
g.drawString("Senthil",50,50); 

g.setFont(f1); 
g.drawString("Velan",50,80); 

g.setFont(f2); 
g.drawString("Vicky",50,110); 

g.setFont(f3); 
g.drawString("Vignesh",50,140); 
} 
} 

/* <applet code = "fon.class" height = 500 width =500> 
</applet> */
A to Z Full Forms and Acronyms

Related Article