C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
To Change The Font Style Using Font Class In Applet Using Java Program
WhatsApp
Senthilvelan Sambamoorthy
Aug 20
2016
45.2
k
0
0
fon.rar
import
java.awt.*;
import
java.applet.*;
public
class
fon
extends
Applet
{
Font f1,f2,f3;
public
void
init()
{
f1 =
new
Font(
"Arial"
,Font.BOLD,
18
);
f2 =
new
Font(
"Forte"
,Font.PLAIN,
24
);
f3 =
new
Font(
"Elephant"
,Font.ITALIC,
28
);
}
public
void
paint(Graphics g)
{
g.drawString(
"Senthil"
,
50
,
50
);
g.setFont(f1);
g.drawString(
"Velan"
,
50
,
80
);
g.setFont(f2);
g.drawString(
"Vicky"
,
50
,
110
);
g.setFont(f3);
g.drawString(
"Vignesh"
,
50
,
140
);
}
}
/* <applet code = "fon.class" height = 500 width =500>
</applet> */
Applet Using Java
Java
Up Next
To Change The Font Style Using Font Class In Applet Using Java Program