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