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