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