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