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