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