当前位置:Gxlcms > html代码 > 如何使用HTML布局web页面?(代码示例)

如何使用HTML布局web页面?(代码示例)

时间:2021-07-01 10:21:17 帮助过:77人阅读

本篇文章给大家带来的内容是介绍如何使用HTML布局web页面?(代码示例)。有一定的参考价值,有需要的朋友可以参考一下,希望对你们有所帮助。

一, 效果图。

二,代码。

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>html 列表</title>
  6. </head>
  7. <body>
  8. <!--使用div元素的网页布局-->
  9. <div id="container" style="width:500px">
  10. <div id="header" style="">>
  11. <h1 style="margin-bottom:0">main title o f web page</h1>
  12. </div>
  13. <div id="menu" style="height:200px;width:100px;float:left">
  14. <b>menu</b>
  15. <br> html
  16. <br> css
  17. <br> javascript
  18. </div>
  19. <div id="content" style="height:200px;width:400px;float:left">
  20. ontent goes here
  21. </div>
  22. <div id="footer" style="clear:both;text-align:center">
  23. Copyright © W3CSchool.cc
  24. </div>
  25. <!--使用table元素的网页布局-->
  26. <table width="500" border="0">
  27. <tr>
  28. <td colspan="2" style="">>
  29. <h1>main title of web page</h1>
  30. </td>
  31. </tr>
  32. <tr>
  33. <td style="width:100px">
  34. <b>menu</b>
  35. <br>html
  36. <br>css
  37. <br>javascript</td>
  38. <td style="height:200px;width:400px">
  39. content goes here</td>
  40. </tr>
  41. <tr>
  42. <td colspan="2" style="text-align:center">
  43. Copyright © W3CSchool.cc</td>
  44. </tr>
  45. </table>
  46. </body>
  47. </html>


参考资料:《菜鸟教程》

以上就是如何使用HTML布局web页面?(代码示例)的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行