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