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