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