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