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