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