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