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