how to insert APPLET, IFRAME ,INS , MAP ,OBJECT , SCRIPT | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

how to insert APPLET, IFRAME ,INS , MAP ,OBJECT , SCRIPT

29th May 2016, 9:10 AM
SAMUEL D'SILVA
SAMUEL D'SILVA - avatar
2 Answers
+ 3
The applet tag is used to embed Java applets. For example: <applet code="Bubbles.class" width="350" height="350"> Java applet that draws animated bubbles. </applet> An iframe is used to display a web page within a web page. You can also use your html file as the source: <iframe src="http://www.sololearn.com" width="200" height="200"></iframe> The <ins> tag defines a text that has been inserted into a document. <p>I am learning <del>to code</del> <ins>HTML</ins>!</p> The <map> tag is used to define a client-side image-map. An image-map is an image with clickable areas. <map name="mymap"> <area shape="rect" coords="0,0,82,126" href="1.htm" alt="1"> <area shape="circle" coords="90,58,3" href="2.htm" alt="2"> <area shape="circle" coords="124,58,8" href="3.htm" alt="3"> </map> The <object> tag defines an embedded object within an HTML document. (ActiveX, PDF, Flash, etc.) in your web pages. <object width="400" height="400" data="someflash.swf"></object> The <script> tag is used to define a script (JavaScript). <script> document.write("Hello from JS"); </script>
30th May 2016, 1:24 PM
James Flanders
0
thx
30th May 2016, 2:50 PM
SAMUEL D'SILVA
SAMUEL D'SILVA - avatar