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