Use on the webTotal Use [ 5442 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/77d27f7aae15a80792d26a986a52303f?family=TypeWrong+Smudged+-+DGL+%28Trial%29+Bold" 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/77d27f7aae15a80792d26a986a52303f?family=TypeWrong+Smudged+-+DGL+%28Trial%29+Bold); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "TypeWrong Smudged - DGL (Trial) Bold";
    src: url("https://db.onlinewebfonts.com/t/77d27f7aae15a80792d26a986a52303f.eot");
    src: url("https://db.onlinewebfonts.com/t/77d27f7aae15a80792d26a986a52303f.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/77d27f7aae15a80792d26a986a52303f.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/77d27f7aae15a80792d26a986a52303f.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/77d27f7aae15a80792d26a986a52303f.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/77d27f7aae15a80792d26a986a52303f.svg#TypeWrong Smudged - DGL (Trial) Bold")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "TypeWrong Smudged - DGL (Trial) Bold";