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