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