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