//My name is Abdulla al-mutawa.
//The program must display an archery target(my design) with colored rings at least 3 rings.
//the program must displaythe scoring values for each ring.
//the program must display my nameon the screen. 


import java.awt.*;
import java.applet.Applet;
public class Archery extends Applet 
{
  public void paint(Graphics window)
  {
       //draw big circle in blue
        window.setColor(Color.blue);
        window.fillOval(120,70,200,200);
      //draw middle circle in green
        window.setColor(Color.green);
        window.fillOval(145,95,150,150);
      //draw small circle in red
        window.setColor(Color.red);
        window.fillOval(170,120,100,100);
      //circle 1
        window.setColor(Color.black);
        window.drawString("1",210,90);
      //circle 2
        window.drawString("2",210,120);
      //circle 3
        window.drawString("3",210,150);
        window.drawString("Abdulla Al-Mutawa",20,50);
          
  }
}     
