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