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