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