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