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