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