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