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