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