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