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