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