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