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