// Ammar alajeal
// DATE: February 14, 2001
// lab 3 
// csci 14a
// The purpos of this lab is to shows you domenstrat you would creat and Oval wthin an Oval and entering the scores within the Ovals.
import java.applet.Applet;
import java.awt.*;
public class GreetingApplet extends Applet
{
  public void paint (Graphics window)
 {
   // write name in blue
   window.setColor(Color.blue);
   window.drawString ("Ammar Alajeal",0,240);
   // draw target
   // draw largest 
   window.setColor(Color.green);
   window.fillOval(50,0,300,300);
   // draw a middle circle
   window.setColor(Color.white);
   window.fillOval(100,50,200,200); 
   // draw smallest circle
   window.setColor(Color.red);
   window.fillOval(150,100,100,100);
   window.setColor(Color.black);
   window.drawString("100",190,30);
   window.drawString("200",190,80);
   window.drawString("500",190,143);
 }
}