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