HTML Help - Not Displaying Images In A Frame

SBTlauien

New Member
i made a html document that opens a few webpages. the problem is, i dont want the images to be displayed. i only want to be able to read the text.

are there any html tags to disable the images? or any java, ect., tags to disable them?

thanks.
 
Can you post the code you use?

yes...

<html>

<FRAMESET COLS="50%, 50%">
<FRAMESET ROWS="50%, 50%">
<FRAME SRC="http://yahoo.com">
<FRAME SRC="http://yahoo.com">

</FRAMESET>
<FRAMESET ROWS="50%, 50%">
<FRAME SRC="http://yahoo.com">
<FRAME SRC="http://yahoo.com">
</FRAMESET>
</FRAMESET>


<body>
</body>
</html>
 
Back
Top