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