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