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