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