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