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