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