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