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