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