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