Adding applet in the webpage

Marcelo

New member
Joined
Jun 29, 2024
Messages
3
Points
1
I have made an java applet for tic tac toe, how can I add into the html page so that i can make it online?
 

essel

New member
Joined
Jun 29, 2024
Messages
3
Points
1
You can use <applet> tag for including applet in html.

<applet code="abc.class" height=100 width=100>

hope it helps
 
Top