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