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