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