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