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