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