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