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