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