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