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