Iframes su omoguceni u mnogim browserima. Kada je iframe prisutan na stranici, tada se u tu stranicu moze ucitati druga stranica. Slicno frejmovima, ali ovde nema frejmova.
Evo nekih artikala ifrejmova:
![]() |
Ako kliknete na sliku docice do neke akcije, npr, download, ili ovde na hiperlink |
Iframe je pokazan u desnoj koloni tabele. Kada kliknete levo, aktivirace se ciljana desna strana.
Sto se tice atributa, isto je kao i kod frejmova.
Ovo je meni |
|
Evo i odnosnog koda:
< table>< tr>< td>This is the Menu
</h2> <!-- ####################### the links to the iframe use the iframe name as the TARGET ####################### --> <a href="p1.htm" target="iframe1"> Page One < /a>< a href="p2.htm" target="iframe1">Page Two < /a>< /td>< td width="220" valign="top">< p align="center"><!-- ####################### start of iframe tags ####################### --> <!-- ####################### the text between the start and end tags of the iframe is similar to the noframes tag in regular frames ####################### --> < iframe name="iframe1" src="p0.htm" align="top" height="100" width="400" hspace="10" vspace="10">If you can see this, your browser does not support iframes!
</iframe> <!-- ####################### end of iframe tags ####################### --> </td> </tr> </table> |