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