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