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