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