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