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