6_菜单.html 912 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. display: inline-block;
  14. /* 居中 */
  15. text-align: center;
  16. line-height: 33px;
  17. color: #fff;
  18. font-family: PingFangSC-Regular, Verdana, Arial, 微软雅黑, 宋体;
  19. font-size: 14px;
  20. font-weight: 700;
  21. text-decoration: none;
  22. }
  23. a:hover{
  24. background: pink;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <a href="#">HOME</a><a href="#">NEWS</a><a href="#">ARTICLES</a><a href="#">FORUM</a><a href="#">CONTACT</a><a href="#">ABOUT</a>
  30. </body>
  31. </html>