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