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