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