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