/*Write an applet to draw an oval and comment upon its shape usage in four lines with a heading An Applet in a HTML page AIM:To draw an oval using an applet and comment upon its shape */ import java.awt.*; import java.applet.*; public class OvalApplet extends Applet { public void paint(Graphics g) { g.drawOval(100,100,20,100); g.setFont(new Font("TimesNewRoman",Font.BOLD,18)); g.drawString("an applet in a html page",170,100); g.setFont(new Font("ArialNarrow",Font.PLAIN,14)); g.drawString("this is an oval",170,140); g.drawString("is it like an egg?",170,160); g.drawString("won't it look funny",170,180); g.drawString("if the earth takes this shape",170,200); } }