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