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