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