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