亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

HTML ????

HTML ????

???? ????? ????? ??? ???? ? ?? ?????.

???? ????? ???? ??????.

???? ????

???? ????? ???? ?? ?? ?????(??? ????).

???? ????? <div> ?? <table> ??? ???? ?? ?? ?? ? ????. CSS? ??? ????? ???? ??? ???? ??? ??? ? ?????.



HTML ??? ??? ???? ???? ????? ???? ? ??? ??? ??? ???? ??? ???? ????. ???? ??? ????. ???? ??.

HTML ???? - <div> ?? ??

div ??? HTML ??? ????? ? ???? ?? ?? ?????.

?? ???? 5?? div ??? ???? ?? ? ????? ????.

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div#container{width:500px}
div#header {background-color:#cc6666;}
div#menu {background-color:#99CCFF; height:200px; width:100px; float:left;}
div#content {background-color:#EEEEEE; height:200px; width:400px; float:left;}
div#footer {background-color:#99bbbb; clear:both; text-align:center;}
h1 {margin-bottom:0;}
h2 {margin-bottom:0; font-size:14px;}
ul {margin:0;}
li {list-style:none;}
</style>
</head>
<body>
<div id="container">
<div id="header">
<h1>網(wǎng)站頭部圖片,標(biāo)題</h1>
</div>
<div id="menu">
<h2>菜單</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</div>
<div id="content">內(nèi)容</div>
<div id="footer">底部</div>
</div>
</body>
</html>

HTML ???? - ??? ??

HTML <table> ??? ???? ????? ?? ?? ? ????.

<div> ?? <table> ??? ???? ?? ?? ?? ? ????. CSS? ??? ????? ???? ??? ???? ??? ??? ? ?????.

?: HTML ???? ???? ???? ????? ?? ? ???? ???? ??? ??? ???? ????? ???????. ???? ???? ??? ????.

?? ???? 3?? ?? 2?? ?? ?? ???? ?????. ? ??? ??? ?? colspan ??? ???? ? ?? ?????.

?

<!DOCTYPE html>
<html>
<body>
<table width="500" border="0">
<tr>
<td colspan="2" style="background-color:#99bbbb;">
<h1>網(wǎng)站頭部圖片,標(biāo)題</h1>
</td>
</tr>
<tr valign="top">
<td style="background-color:#ffff99;width:100px;text-align:top;">
<b>Menu</b><br />
HTML<br />
CSS<br />
JavaScript
</td>
<td style="background-color:#EEEEEE;height:200px;width:400px;text-align:top;">
內(nèi)容</td>
</tr>
<tr>
<td colspan="2" style="background-color:#99bbbb;text-align:center;">
標(biāo)題</td>
</tr>
</table>
</body>
</html>


? ?? ??? ???? ??? ?????.

HTML ???? - ??? ?

?: CSS ??? ?? ? ??? CSS ??? ?? ??? ??? ???? ???? ?? ????? ? ??? ????. ?? ??? ???? ?? ???? ????? ??? ? ????. CSS? ?? ??? ????? CSS ????? ?????.

?: ?? ????? ??? ?? ??? ?? ?? ? ???? ???? ???? ?? ?? ?????. ?? ??? ?? ??? ? ?? ?? ???? ???? ?? ????(??? ?? ??? ???? ????? ???? ???? ? ????).


???? ??
||
<!DOCTYPE html> <html> <head> <style type="text/css"> div#container{width:500px} div#header {background-color:#cc6666;} div#menu {background-color:#99CCFF; height:200px; width:100px; float:left;} div#content {background-color:#EEEEEE; height:200px; width:400px; float:left;} div#footer {background-color:#99bbbb; clear:both; text-align:center;} h1 {margin-bottom:0;} h2 {margin-bottom:0; font-size:14px;} ul {margin:0;} li {list-style:none;} </style> </head> <body> <div id="container"> <div id="header"> <h1>網(wǎng)站頭部圖片,標(biāo)題</h1> </div> <div id="menu"> <h2>菜單</h2> <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ul> </div> <div id="content">內(nèi)容</div> <div id="footer">底部</div> </div> </body> </html>