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