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