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