Création du logo dev avec CSS

/* in your html file add <h1>DEV</h1>
Note: I won't use this exact font as their logo is not a font, but an SVG.
*/

h1 {
    margin: 0;
    padding: 0;
    line-height: 8rem;
    display: inline-block;
    font-family: arial;
    font-size: 10rem;
    background: repeating-linear-gradient(red 0%,
            red 5%,
            blue 5%,
            blue 10%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
OHIOLee