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