【正确答案】import java.awt.*;
import javax.swing.*;
public class DisplayQuote extends JApplet{
public void paint(Grahpics g){
g.drawString("are you ready",20,20);
}
}
//Quote.html
<html>
<title>Quotation</title>
<applet code="DisplayQuote.class"width=400 height=200></applet>
</html>
【答案解析】