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