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