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