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