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