Search
 
SCRIPT & CODE EXAMPLE
 

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;
}
Comment

PREVIOUS NEXT
Code Example
Css :: tynker bot 
Css :: bootstrap col-sm-12 
Css :: calmp css 
Css :: htnl css 
Css :: center content in div 
Css :: css different rules on different devices 
Css :: download-a-file-in-laravel-using-a-url-to-external-resource 
Css :: uytutyu 
Css :: sumar clases css 
Css :: how to keep style after click 
Css :: wordpress localhost css not working 
Css :: background image with styled components 
Css :: css sign in with google 
Css :: alternate color on two consecutive rows 
Css :: Shorthand notation of declaring top, right, bottom, left position 
Css :: css conflict 
Css :: add sass to react 
Css :: arranging the paragraph in css 
Css :: css create array 
Typescript :: how to update typescript 
Typescript :: jquery id that starts with 
Typescript :: onkeydown react typescript 
Typescript :: nextjs with tailwind css and typescript 
Typescript :: useref react typescript 
Typescript :: length of object in typescript 
Typescript :: python multiply digits of a number 
Typescript :: react typescript onclick stop propagation 
Typescript :: sum of digits in c++ 
Typescript :: adonisjs hooks 
Typescript :: key value pairs typescript 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =