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