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