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