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