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