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