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