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