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