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