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