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