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