import javax.swing.JOptionPane; import javax.swing.ImageIcon; public class lol { public static void main(String[] args) { ImageIcon icon = new ImageIcon("https://files.worldwildlife.org/wwfcmsprod/images/Sea_Turtle_Hol_Chan_Marine_Reserve_WW1105958/hero_small/5fv88fm3v6_Sea_Turtle_Hol_Chan_Marine_Reserve_WW1105958.jpg"); JOptionPane.showMessageDialog(null,"Message","Title",JOptionPane.PLAIN_MESSAGE,icon); } }