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