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