当前位置:   article > 正文

简单网站模板1(HTML)

简单网站模板1(HTML)

想要拥有自己的网站,却不知该如何才能简约好看,接下来分享一种自己搭建的网站模板,希望大家喜欢。

展示图:

CODE: 

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>我的网站</title>
  5. <style>
  6. body {
  7. font-family: Arial, sans-serif;
  8. background-color: #f2f2f2;
  9. margin: 0;
  10. padding: 0;
  11. }
  12. header {
  13. background-color: #333;
  14. color: #fff;
  15. padding: 20px;
  16. text-align: center;
  17. }
  18. nav {
  19. background-color: #666;
  20. color: #fff;
  21. padding: 10px;
  22. text-align: center;
  23. }
  24. nav a {
  25. color: #fff;
  26. text-decoration: none;
  27. margin: 0 10px;
  28. }
  29. section {
  30. padding: 20px;
  31. margin: 20px;
  32. background-color: #fff;
  33. border-radius: 5px;
  34. }
  35. footer {
  36. background-color: #333;
  37. color: #fff;
  38. padding: 20px;
  39. text-align: center;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <header>
  45. <h1>我的第一个网站</h1>
  46. </header>
  47. <nav>
  48. </nav>
  49. <section>
  50. </section>
  51. <footer>
  52. </footer>
  53. </body>
  54. </html>

如果觉得这种太复杂了,还有一个比较简单。

效果图:

CODE:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>页面标题</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <style>
  8. body {
  9. font-family: Arial, Helvetica, sans-serif;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <h1>我的网站</h1>
  15. <p>我创建的一个网站。</p>
  16. </body>
  17. </html>

 Ladies and gentlemen,看到这么详细的代码,赶紧用你发财的小手点个赞吧!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/165118
推荐阅读
相关标签
  

闽ICP备14008679号