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