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