当前位置:网站首页>A label making navigation bar

A label making navigation bar

2022-07-05 01:49:00 dengfengling999

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <style>
        a {
            display: block;
            /*  hold a Tag set to block level element  */
            width: 200px;
            height: 40px;
            background-color: #55585a;
            font-size: 14px;
            color: #fff;
            text-decoration: none;
            text-indent: 2em;
            padding-left: 30px;
            line-height: 40px;
        }

        a:hover {
            background-color: #ff6700;
        }
    </style>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

</head>

<body>
    <a href="#"> mobile phone   phonecard </a>
    <a href="#">  TV   The box </a>
    <a href="#"> The notebook   Flat </a>
    <a href="#"> Travel   Wound zone </a>
    <a href="#"> intelligence   Router </a>
    <a href="#"> health   children </a>
    <a href="#"> The headset   sound </a>

</body>

</html>

result :

 

原网站

版权声明
本文为[dengfengling999]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202141011560621.html