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