3月20日框架练习
效果图:
实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>后台管理系统</title> </head> <body> <table border="0" cellpadding="5" cellspacing="0" align="center" width="960"> <!-- 头部框架 --> <tr> <td colspan="2"> <iframe src="inc/top.html" name="top" height="70" width="100%" frameborder="0" scrolling="0"></iframe> </td> </tr> <tr> <td colspan="2"> <hr> </td> </tr> <!-- 左侧框架 --> <tr> <td> <iframe src="inc/left.html" width="160" height="600" frameborder="0" scrolling="0"></iframe> </td> <!-- 右侧框架 --> <td> <iframe src="inc/defalt.html" width="800" height="600" frameborder="0" scrolling="0" name="defaultcenter"></iframe> </td> </tr> <!-- 底部框架 --> <tr> <td colspan="2"> <hr> </td> </tr> <tr> <td colspan="2"> <iframe src="inc/footer.html" width="100%" height="70" frameborder="0" scrolling="0"></iframe> </td> </tr> </table> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
手抄练习: