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