Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

Creating DEV logo with 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;
}
 
PREVIOUS NEXT
Tagged: #Creating #DEV #logo #CSS
ADD COMMENT
Topic
Name
5+8 =