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