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