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