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