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