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