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