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