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