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