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