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