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