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