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