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