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