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