The iframe tag needs to be closed. In IE it needs a closing tag:
<iframe attributes here></iframe>
Tables should have rows defined and you were missing a closing tag for the last table. Attributes and tags are better rendered in lower case, attributes should be quoted. Using 50% for each iframe's height makes no sense, 100% for each width is not required unless your screen is less than 1024 pixels wide.
Empty <br>'s often do nothing or little and are not needed in a case like this if styling is used.
The main problem was no closing tags on the iframes. The rest of the changes are mostly just good habits that tend to produce crisp, easy to maintain markup. The tables should really be spans.
This works fairly well here:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title>MUTUAL FUNDS</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
span {
background-color:red;
color:white;
padding:0 5px;
}
iframe, hr {
display:block;
margin-bottom:30px;
}
iframe {
width:90%;
height:500px;
}
</style>
</head>
<body>
<span>HDFC CAPITAL BUILDER--DIVIDEND</span>
<iframe SRC="http://messageboard.moneycontrol.com/mf/mfinfo/snap.php?im_desc=HDFC%20Capital%20Builder%20(D)&ff_desc=HDFC%20Asset%20Management%20Co.%20Ltd.&im_id=MZU018&im_ffid=HD">
</iframe><hr>
<span>HDFC CAPITAL BUILDER--GROWTH</span>
<iframe src="http://messageboard.moneycontrol.com/mf/mfinfo/snap.php?im_desc=HDFC%20Capital%20Builder%20(G)&ff_desc=HDFC%20Asset%20Management%20Co.%20Ltd.&im_id=MZU016&im_ffid=HD">
</iframe><hr>
<span>UTI MASTER SHARE--DIVIDEND</span>
<iframe src="http://messageboard.moneycontrol.com/mf/mfinfo/snap.php?im_desc=UTI%20Mastershare%20(D)&ff_desc=UTI%20Asset%20Mgmt%20Company%20Pvt.%20Ltd.&im_id=MUT094&im_ffid=UT">
</iframe><hr>
<span>TATA DIVIDEND YEILD FUND--DIVIDEND</span>
<iframe src="http://messageboard.moneycontrol.com/mf/mfinfo/snap.php?im_desc=Tata%20Dividend%20Yield%20Fund%20(D)&ff_desc=Tata%20Asset%20Management%20Limited&im_id=MTA130&im_ffid=TA">
</iframe><hr>
<span>TATA DIVIDEND YEILD FND--GROWTH</span>
<iframe SRC="http://messageboard.moneycontrol.com/mf/mfinfo/snap.php?im_desc=Tata%20Dividend%20Yield%20Fund%20(G)&ff_desc=Tata%20Asset%20Management%20Limited&im_id=MTA129&im_ffid=TA">
</iframe><hr>
</body></html>
Bookmarks