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