Use on the webTotal Use [ 3356 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/e01e03bd53513f4e3f0b89f209f9df62?family=DomCasualD+V2" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/e01e03bd53513f4e3f0b89f209f9df62?family=DomCasualD+V2); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "DomCasualD V2";
    src: url("https://db.onlinewebfonts.com/t/e01e03bd53513f4e3f0b89f209f9df62.eot");
    src: url("https://db.onlinewebfonts.com/t/e01e03bd53513f4e3f0b89f209f9df62.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/e01e03bd53513f4e3f0b89f209f9df62.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/e01e03bd53513f4e3f0b89f209f9df62.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/e01e03bd53513f4e3f0b89f209f9df62.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/e01e03bd53513f4e3f0b89f209f9df62.svg#DomCasualD V2")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "DomCasualD V2";