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