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