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