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