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