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