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