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