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