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