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