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