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