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