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