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