/** MyApplet2.java: Second Hello World Applet ** Assignment: Modify this file by changing the ** text, size, color, and position of the text. ** Also, take a look at the MyApplet2.html ** webpage file for displaying this applet. **/ /** USE EXISTING JAVA CLASSES **/ import java.awt.*; import java.applet.Applet; /** EXTEND THE JAVA APPLET CLASS **/ public class MyApplet2 extends Applet { Font f = new Font("TimesRoman",Font.BOLD,36); // Define a font. public void paint(Graphics g) { g.setFont(f); // Set the font. g.setColor(Color.red); // Set the color. g.drawString("Hello again!", 5, 40); } }