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