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