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