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