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