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