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