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