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