日期:2014-05-17 浏览次数:20682 次
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>main.html</title> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!--<link rel="stylesheet" type="text/css" href="./styles.css">--> <style type="text/css"> #header { width: 800px; height: 40px; background-color: black; } #nav { width: 400px; height: 40px; float: left; background-color: red; } #content { width: 400px; height: 40px; float: right; background-color: yellow; } #footer { width: 800px; height: 40px; background-color: black; } </style> </head> <body> <div style="margin: 0 auto; width: 800px;"> <div id="header"> <iframe src="header.html"></iframe> </div> <div id="nav" class="nav"> <iframe src="nav.html"></iframe> </div> <div id="content"> <iframe src="content.html"></iframe> </div> <div id="footer"> <iframe src="footer.html"></iframe> </div> </div> </body> </html>