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