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