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