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