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