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