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