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