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