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