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