Q:

Java Applet - To Change The Font Style Using Font Class

0

This Program is used to change The Font Style Using Font Class using Java Applet.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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> */

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now