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