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