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