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