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