To Change The Font Style And Background, Foreground Color Using Font Class, Color Class In Applet Using Java Program

  1. import java.awt.*;    
  2. import java.applet.*;    
  3.     
  4. public class colo extends Applet    
  5.  {    
  6.    Font f1,f2,f3;    
  7.     
  8.    public void  init()    
  9.     {    
  10.        f1 = new Font("Arial",Font.BOLD,18);    
  11.        f2 = new Font("Forte",Font.PLAIN,24);    
  12.        f3 = new Font("Elephant",Font.ITALIC,28);    
  13.     }    
  14.           
  15.    public void  paint(Graphics g)    
  16.    {    
  17.       setBackground(Color.yellow);    
  18.     
  19.       g.setColor(Color.red);    
  20.       g.drawString("Senthil",50,50);    
  21.     
  22.       g.setColor(Color.blue);    
  23.       g.setFont(f1);     
  24.       g.drawString("Velan",50,80);    
  25.     
  26.       g.setColor(Color.green);          
  27.       g.setFont(f2);     
  28.       g.drawString("Vicky",50,110);    
  29.     
  30.       g.setColor(Color.magenta);            
  31.       g.setFont(f3);     
  32.       g.drawString("Vignesh",50,140);    
  33.    }    
  34.  }    
  35.     
  36. /* <applet code = "colo.class" height = 500 width =500>  
  37.    </applet> */