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