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