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