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