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