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