import javax.swing.*;
public class jsframe {
public static void main(String[] args) {
JFrame frame = new JFrame("Insert Title"); // Create frame
frame.setSize(800, 600); // Window resolution, can be changed
frame.setVisible(true); // Show frame
}
}