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