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