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