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