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