PPT Slide
import java.awt.Graphics;
public class FirstGraphics extends java.applet.Applet {
public void paint(Graphics g) {
Font fbigbold = new Font("TimesRoman",Font.BOLD,36);
Font fsmallplain = new Font("TimesRoman",Font.PLAIN,18);
g.drawString("BIG, BOLD, BLACK STRING",10,50);
g.drawString("Small, plain, red string",10,70);
g.drawString("Filled and unfilled rectangles",10,100);
g.drawString("Filled and unfilled ovals",250,100);
g.drawRect(60,120,80,60);
g.drawOval(310,120,80,60);
g.setColor(Color.yellow);
g.fillRect(65,125,70,50);
g.fillOval(315,125,70,50);