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