My Chrome is asking permission to run the Applet. You should check if Java is enabled in the option or not.
For, fonts, you can change, but since I haven't done Java Applet for ages, I'm not sure about what Java classes you are using. Giving us the .java would make it simpler to help you. For now, I will based my example on assumption.
If it's a JTextField, then, there is the setFont(Font t) method.
http://docs.oracle.com/javase/6/docs/ap ... Field.htmlYou must have something like
Code:
//Required import
public class MyClass extends JApplet{
JTextField textField;
public void init(){
textfield=New JTextField();
textfield.setFont(new Font("Times New Roman", Font.PLAIN, 12));
//your code
}
}
Something like this. Just to warn, I didn't test xD.
For the appearance in general.. hmm… you can do a lot of stuff but I don't know what you want.