8_水平导航.html 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. a{
  10. width:94px;
  11. height:33px;
  12. background: #bebebe;
  13. float: left;
  14. text-align: center;
  15. line-height: 33px;
  16. color:#fff;
  17. font-family: PingFangSC-Regular, Verdana, Arial, 微软雅黑, 宋体;
  18. font-size: 14px;
  19. font-weight: bold;
  20. /* 文本修饰 */
  21. text-decoration: none;
  22. }
  23. a:hover{
  24. background: #cc0000;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div>
  30. <a href="#">HOME</a>
  31. <a href="#">NEWS</a>
  32. <a href="#">ARTICLES</a>
  33. <a href="#">FORUM</a>
  34. <a href="#">CONTACT</a>
  35. <a href="#">ABOUT</a>
  36. </div>
  37. </body>
  38. </html>