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