+ 1
how to insert APPLET, IFRAME ,INS , MAP ,OBJECT , SCRIPT
2 Respostas
+ 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>
0
thx