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