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