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