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