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