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