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