Pesquisar neste blog

27/03/2023

Easy CSS Text Animation

<!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>
    <meta http-equiv="refresh" content="5">
</head>
<style>
    body{
        background-color: rgb(97, 236, 17);
    }
    h1{
        background-image: url("https://c.tenor.com/RqH54jCv970AAAAM/lines.gif");
        color: transparent;
        -moz-background-clip: text;
        -webkit-background-clip: text;
        font-size: 100px;
    }
</style>
<body>
    <h1>HELLO WORLD !</h1>
</body>
</html>

Saída gerada





Nenhum comentário: