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