Italicize the second line
import javax.swing.JButton; public class Main { public static void main(String[] argv) throws Exception { JButton component = new JButton(); component.setToolTipText("<html>" + "This is a" + "<br><i>" + "tool tip" + "</i></html>"); } }