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