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