How do I publish SSRS reports on a webpage?

I am not sure how this helps you. This is the html code of the page. I wish to create the individual pages that will be shown in each iframe

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" style="height: 100%; margin:0">

<head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>Untitled 1</title> <style type="text/css"> .auto-style1 { margin-bottom: 0px; } </style> </head>

<body style="height: 100%; background-color:#CCCCCC"> <table style="margin: 0px;height:100%;width:100%;border:thin" > <tr> <td width="33%" style="margin:0;padding:-50px"> <iframe src="report.htm" style="width:100%; height:100%; margin-left: 0px; margin-right: 0px; margin-top: 0px;" frameborder="0" scrolling="no" class="auto-style1"></iframe> </td> <td width="33%"> <iframe src="report.htm" style="margin:0px;width:100%;height:100%" frameborder="0" scrolling="no"></iframe> </td> <td width="33%"> <iframe src="report.htm" style="margin:0px;width:100%; height:100%" frameborder="0" scrolling="no"></iframe> </td> </tr>

<tr>
    <td width="33%">
        <iframe src="report.htm" style="margin:0px;width:100%;height:100%"  frameborder="0" scrolling="no"></iframe>
    </td>
    <td width="33%">
        <iframe src="report.htm" style="margin:0px;width:100%;height:100%"  frameborder="0" scrolling="no"></iframe>
    </td>
    <td width="33%">
        <iframe src="report.htm" style="margin:0px;width:100%;height:100%"  frameborder="0" scrolling="no"></iframe>
    </td>
</tr>

 <tr>
    <td width="33%">
        <iframe src="report.htm" style="margin:0px;width:100%;height:100%"  frameborder="0" scrolling="no"></iframe>
    </td>
    <td width="33%">
        <iframe src="report.htm" style="margin:0px;width:100%;height:100%" frameborder="0" scrolling="no"></iframe>
    </td>
    <td width="33%">
        <iframe src="report.htm" style="margin:0px;width:100%;height:100%"  frameborder="0" scrolling="no"></iframe>
    </td>
</tr>

</table> </body>

</html>

/r/SQLServer Thread Parent