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