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