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