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