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