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