I am trying to set up a simple JApplet using IntelliJ. I have a class called Square and a HTML file which should make it work, but I keep getting a ClassNotFoundException.
import javax.swing.*;
import java.awt.*;
public class Square extends JApplet {
    int size = 40;
    public void init() {
        JButton butSmall = new JButton("Small");
        JButton butMedium = new JButton("Medium");
        JButton butLarge = new JButton("Large");
        JButton butMessage = new JButton("Say Hi!");
        SquarePanel panel = new SquarePanel(this);
        JPanel butPanel = new JPanel();
        butPanel.add(butSmall);
        butPanel.add(butMedium);
        butPanel.add(butLarge);
        butPanel.add(butMessage);
        add(butPanel, BorderLayout.NORTH);
        add(panel, BorderLayout.CENTER);
    }
}
class SquarePanel extends JPanel {
    Square theApplet;
    SquarePanel(Square app) {
        theApplet = app;
    }
    public void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(Color.green);
        g.fillRect(20, 20, theApplet.size, theApplet.size);
    }
}
and the HTML file
<HTML>
<APPLET CODE="Square.class"> WIDTH=400 HEIGHT=200>
</APPLET>
</HTML>
This is the folder structure. I've tried lots of different combos and names and <> delimiters but I can't get it to open properly.

