Create Bold Font Example
- /*
- Create Bold Font Example
- This java example shows how to create bold font using Java AWT Font
- class.
- */
- import java.applet.Applet;
- import java.awt.Font;
- import java.awt.Graphics;
- /*
- <applet code="CreateBoldFontExample" width=200 height=200>
- </applet>
- */
- public class CreateBoldFontExample extends Applet{
- public void paint(Graphics g) {
- /*
- * To create a bold font, use
- * Font(String name,int style, int size)
- * constructor of font class.
- *
- * sepcify Font.BOLD as style.
- */
- Font myFont = new Font("Courier", Font.BOLD,20);
- g.setFont(myFont);
- g.drawString("Bold Font Example", 10, 50);
- }
- }
Example Output




