演练 多彩的google

74 阅读1分钟

演练 多彩的google

效果

代码

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>

    <style>
        span{
            font-size: 70px;
        }
        .one{
            color: blue;
        }
        .two{
            color: red;
        }
        .three{
            color: orange;
        }
        .four{
            color: green;
        }
    </style>

</head>
<body>

<span class="one">G</span>
<span class="two">o</span>
<span class="three">o</span>
<span class="one">g</span>
<span class="four">l</span>
<span class="two">e</span>

</body>
</html>