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