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