GLAMERDAVOR


HTM74


  • Description
  • Output
  • Source Code



  • BACK TO EXERCISES




    Description


    Use of inline frames.

    return


    Output



    return


    Source Code


    <HTML>
    <HEAD><TITLE>A Web page with inline frames</TITLE></HEAD>
    <BODY>
    <FONT COLOR = blue><H2 ALIGN = center>A web page using inline frames</H2></FONT>
    <IFRAME SRC = statement.html WIDTH = 350 HEIGHT = 90>
    This web page uses the IFRAME tag.<BR>
    This tag is only supported by MS IE.<BR>
    Browsers that are not IFRAME compatible ignores the tag.<BR>
    Instead, they render any tags and text enclosed by the IFRAME tag as the case with this browser.
    </IFRAME>
    <P>This Web page uses inline frames.<BR>
    Text flows around these frames.<BR>
    </BODY>
    </HTML>
    return

    HTM74