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