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