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