12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- a{
- width:94px;
- height:33px;
- background: #bebebe;
- display: inline-block;
- /* 居中 */
- text-align: center;
- line-height: 33px;
- color: #fff;
- font-family: PingFangSC-Regular, Verdana, Arial, 微软雅黑, 宋体;
- font-size: 14px;
- font-weight: 700;
- text-decoration: none;
- }
- a:hover{
- background: pink;
- }
- </style>
- </head>
- <body>
- <a href="#">HOME</a><a href="#">NEWS</a><a href="#">ARTICLES</a><a href="#">FORUM</a><a href="#">CONTACT</a><a href="#">ABOUT</a>
- </body>
- </html>
|