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